-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.98 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
57
58
59
60
{
"name": "serverless-confirm-command",
"version": "1.2.2",
"description": "Serverless plugin to make commands (and provider-specific options) requiring confirmation before execution.",
"author": "Teddy Gustiaux <[email protected]>",
"license": "MIT",
"main": "lib/serverless-confirm-command.js",
"repository": {
"type": "git",
"url": "git+https://github.com/teddy-gustiaux/serverless-confirm-command.git"
},
"bugs": {
"url": "https://github.com/teddy-gustiaux/serverless-confirm-command/issues"
},
"homepage": "https://github.com/teddy-gustiaux/serverless-confirm-command#readme",
"directories": {
"test": "test"
},
"files": [
"/lib"
],
"keywords": [
"serverless",
"confirm",
"command",
"stage"
],
"scripts": {
"lint:all": "eslint --config .eslintrc.json . --ext .js",
"lint:file": "eslint --config .eslintrc.json",
"fix:all": "eslint --config .eslintrc.json . --ext .js --fix",
"fix:file": "eslint --config .eslintrc.json --fix",
"test": "nyc mocha --recursive \"test/**/*.test.js\"",
"test:all": "nyc mocha --recursive \"test/**/*.test.js\"",
"test:unit": "nyc mocha --recursive \"test/unit/**/*.test.js\"",
"test:integration": "nyc mocha --recursive \"test/integration/**/*.test.js\"",
"test:file": "nyc mocha",
"test:watch": "mocha --watch",
"build:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"codecov": "nyc report --reporter=text-lcov > .nyc_output/coverage.lcov && codecov"
},
"dependencies": {},
"devDependencies": {
"chai": "4.2.0",
"codecov": "3.6.5",
"conventional-changelog-cli": "2.0.23",
"dirty-chai": "2.0.1",
"eslint": "6.5.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"mocha": "6.2.1",
"nyc": "14.1.1",
"prettier": "1.18.2",
"serverless": "1.53.0",
"sinon": "7.5.0",
"sinon-chai": "3.3.0"
}
}