-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
55
56
{
"version": "1.3.2",
"name": "mincloud",
"description": "mincloud is an ifanr faas cli",
"keywords": [
"faas",
"cli"
],
"main": "lib",
"license": "Apache-2.0",
"repository": "https://github.com/ifanrx/faas-cli.git",
"bugs": {
"url": "https://github.com/ifanrx/faas-cli/issues"
},
"engines": {
"node": ">=6.14.0"
},
"bin": "bin/faas-cli.js",
"scripts": {
"build": "rimraf lib && babel src -d lib --ignore '**/*.spec.js,**/*.test.js'",
"test": "jest src/",
"format": "prettier --write 'src/**/*.js' && npm run lint -- --fix",
"lint": "standard 'src/**/*.js'",
"precommit": "npm run format && npm run lint --fix && npm run test",
"prepublishOnly": "npm run build"
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"archiver": "^5.3.1",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-2": "^6.24.1",
"columnify": "^1.5.4",
"config-chain": "^1.1.12",
"lodash.isplainobject": "^4.0.6",
"mkdirp": "^0.5.1",
"nopt": "^4.0.1",
"npmlog": "^4.1.2",
"osenv": "^0.1.5",
"prettyjson": "^1.2.1",
"request": "^2.88.2",
"rimraf": "^2.6.2",
"util.promisify": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^29.5.0",
"nock": "^10.0.0",
"prettier": "^1.14.3",
"standard": "^17.0.0"
}
}