-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
66 lines (66 loc) · 1.43 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
61
62
63
64
65
66
{
"name": "st2client",
"version": "1.2.6",
"description": "StackStorm ST2 API library",
"main": "index.js",
"scripts": {
"test": "nyc mocha tests/",
"prepare": "node_modules/.bin/gulp"
},
"nyc": {
"temp-directory": "./coverage/.nyc_output",
"include": [
"index.js",
"lib"
],
"exclude": [
"test"
],
"reporter": [
"html",
"text"
]
},
"author": "Kirill Izotov <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/StackStorm/st2client.js",
"repository": {
"type": "git",
"url": "https://github.com/StackStorm/st2client.js.git"
},
"engine": {
"node": ">=0.11.0"
},
"files": [
"/index.js",
"/lib"
],
"dependencies": {
"axios": "^0.21.1",
"eventsource": "^0.1.4",
"lodash": "^4.17.21",
"object.assign": "^1.0.1"
},
"devDependencies": {
"browserify": "^16.5.1",
"chai": "^2.1.2",
"chai-as-promised": "^4.1.1",
"debug": "^4.3.1",
"del": "^5.1.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^7.0.2",
"gulp-mocha-phantomjs": "^0.12.2",
"gulp-plumber": "^0.6.6",
"gulp-size": "^2.0.0",
"gulp-sourcemaps": "^1.6.0",
"jshint": "^2.11.0",
"mocha": "^7.1.1",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"promise-polyfill": "^2.1.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}