forked from weixu365/serverless-scriptable-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "serverless-scriptable-plugin",
"version": "0.0.0-development",
"description": "Add scripts(nodejs) support to serverless 1.x",
"main": "index.js",
"scripts": {
"check-style": "eslint -f stylish .",
"test": "nyc --reporter=lcov mocha && nyc check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/weixu365/serverless-scriptable-plugin.git"
},
"keywords": [
"serverless",
"script",
"shell",
"command",
"cli",
"javascript",
"nodejs",
"hook",
"customize",
"plugin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/weixu365/serverless-scriptable-plugin/issues"
},
"homepage": "https://github.com/weixu365/serverless-scriptable-plugin#readme",
"devDependencies": {
"chai": "4.4.1",
"color-support": "1.1.3",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"mocha": "10.3.0",
"nyc": "15.1.0",
"semantic-release": "23.0.2",
"tmp": "0.2.1"
},
"dependencies": {
"bluebird": "3.7.2"
},
"overrides": {
"minimist": "1.2.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}