-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "serverless-plugin-stackstorm",
"version": "1.2.2-0",
"description": "Running StackStorm actions serverlessly",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha \"./{,!(node_modules)/**/}*.test.js\"",
"integration": "mocha \"tests/e2e/*.js\"",
"cover": "nyc --reporter=lcovonly npm test"
},
"engines": {
"node": "^8.4.0"
},
"repository": {
"type" : "git",
"url" : "https://github.com/StackStorm/serverless-plugin-stackstorm.git"
},
"author": "Kirill Enykeev <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"axios": "0.16.2",
"chalk": "2.3.0",
"fs-extra": "4.0.2",
"get-stdin": "5.0.1",
"js-yaml": "3.10.0",
"lodash": "4.17.11",
"nopy": "0.2.3",
"simple-git": "^1.84.0",
"url-join": "2.0.2"
},
"devDependencies": {
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"eslint": "4.9.0",
"eslint-plugin-async-await": "0.0.0",
"mocha": "4.0.1",
"nyc": "11.3.0",
"promise-retry": "1.1.1",
"proxyquire": "1.8.0",
"serve": "6.4.1",
"serverless": "1.24.1",
"sinon": "4.0.2",
"sinon-chai": "2.14.0",
"tmp": "0.0.33"
}
}