-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.11 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
54
{
"name": "@kit48/rest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage --env=node",
"build": "pika-pack build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kit48/rest.js.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kit48/rest.js/issues"
},
"homepage": "https://github.com/kit48/rest.js#readme",
"jest": {
"preset": "ts-jest",
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
},
"dependencies": {
"axios": "^0.20.0"
},
"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",
"@types/jest": "^26.0.10",
"jest": "^26.4.1",
"ts-jest": "^26.2.0",
"typescript": "^4.0.2"
}
}