-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "dockercloud",
"version": "0.2.2",
"description": "Node.js library for Docker Cloud API",
"main": "lib/dockercloud.js",
"scripts": {
"dev": "babel-node ./test/playground.js --presets=es2015,stage-0",
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha",
"test:report": "mocha --compilers js:babel-core/register --reporter mocha-junit-reporter",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CityofSurrey/dockercloud.git"
},
"keywords": [
"docker",
"dockercloud"
],
"author": "Viatcheslav Ivanov ([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/CityofSurrey/dockercloud/issues"
},
"homepage": "https://github.com/CityofSurrey/dockercloud#readme",
"dependencies": {
"babel-polyfill": "^6.9.1",
"request": "^2.71.0",
"ws": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-react": "^5.0.1",
"isparta": "^4.0.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mocha-junit-reporter": "^1.11.1"
}
}