-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 885 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 885 Bytes
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
{
"name": "oni-api-creator",
"version": "0.2.3",
"description": "oni api is just a convenient tool for craete apis.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"security:check": "npm audit --omit=dev",
"security:install": "npm ci --ignore-scripts"
},
"keywords": [
"oni",
"api",
"create"
],
"files": [
"lib"
],
"typings": "lib/index.d.ts",
"author": "andy",
"license": "MIT",
"dependencies": {
"axios": "1.14.0",
"qs": "^6.11.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@types/jest": "^24.0.11",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"jest": "^24.5.0",
"rimraf": "^2.6.3"
},
"overrides": {
"axios": "1.14.0"
},
"resolutions": {
"axios": "1.14.0"
},
"pnpm": {
"overrides": {
"axios": "1.14.0"
}
}
}