-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "circleci",
"version": "0.3.3",
"description": "A Node.js client for CircleCI",
"main": "dist/circleci.js",
"scripts": {
"test": "grunt test:unit",
"prepublish": "npm test && grunt build"
},
"keywords": [
"circleci",
"circle",
"ci",
"rest",
"api",
"client"
],
"author": "Jack Stevens <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jpstevens/circleci.git"
},
"bugs": {
"url": "https://github.com/jpstevens/circleci/issues"
},
"homepage": "https://github.com/jpstevens/circleci",
"devDependencies": {
"grunt-coffeelint": "0.0.10",
"grunt-contrib-watch": "^0.6.1",
"grunt": "^0.4.5",
"grunt-contrib-coffee": "^0.10.1",
"grunt-mocha-test": "^0.11.0",
"chai": "^1.9.1",
"load-grunt-tasks": "^0.6.0",
"coffee-script": "^1.7.1",
"sinon": "^1.10.2",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-copy": "^0.5.0"
},
"dependencies": {
"q": "^1.0.1",
"request": "^2.36.0"
}
}