-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "string-rank",
"version": "1.0.0",
"description": "Generate string to use as ranks in a database",
"repository": {
"type": "git",
"url": "https://github.com/azmenak/string-rank"
},
"scripts": {
"test": "jest",
"version": "npx @pika/pack"
},
"keywords": [
"string-rank",
"sortable",
"reorderable",
"database",
"typescript",
"esm",
"pika"
],
"author": "Adam Zmenak <[email protected]>",
"license": "MIT",
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@pika/types": "^0.9.2",
"@types/jest": "^25.2.1",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"exclude": [
"*.spec.*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
}
}