forked from dafanasiev/teamcity-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "teamcity-client",
"version": "1.0.11",
"description": "Teamcity Client for Node.js",
"main": "out/index.js",
"repository": {
"type": "git",
"url": "git@github.com:acvetkov/teamcity-client.git"
},
"scripts": {
"test": "mocha --recursive --compilers js:babel/register --require ./test/setup.js",
"code": "eslint ./src ./test && jscs ./src ./test --verbose",
"build": "npm run code && npm run test && npm run babel",
"babel": "npm run clean && babel ./src --out-dir ./out",
"clean": "rm -rf ./out/",
"prepublish": "npm run build",
"dev": "npm run clean && babel ./src --out-dir ./out --watch"
},
"keywords": [
"teamcity",
"api",
"promise",
"node"
],
"author": "Aleksey Tsvetkov <aleksey.dmitrich@gmail.com> (https://github.com/acvetkov)",
"license": "ISC",
"dependencies": {
"axios": "^0.17.1",
"debug": "^2.2.0",
"lodash": "^3.10.1",
"q": "^1.4.1",
"q-io": "^1.13.1"
},
"devDependencies": {
"babel": "^5.8.34",
"babel-eslint": "^6.0.2",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"eslint": "^2.7.0",
"eslint-plugin-babel": "^3.2.0",
"jscs": "^2.6.0",
"mocha": "^2.3.4",
"nock": "^8.0.0",
"sinon": "^1.17.2"
}
}