-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 KB
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
{
"name": "@greenchef/node-skuvault",
"version": "1.0.4",
"description": "Sku Vault API Wrapper",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint .",
"build": "babel src/ -d lib/",
"buildw": "babel -w src/ -d lib/",
"test": "npm run build && ./node_modules/mocha/bin/_mocha -R spec src/**/*.spec.js --recursive",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greenchef/node-skuvault.git"
},
"keywords": [
"node",
"sku vault",
"vault"
],
"engines": {
"node": ">=4"
},
"author": "Green Chef",
"bugs": {
"url": "https://github.com/greenchef/node-skuvault/issues"
},
"homepage": "https://github.com/greenchef/node-skuvault#readme",
"dependencies": {
"appdynamics": "^4.2.15",
"babel-runtime": "^6.23.0",
"bluebird": "^3.5.0",
"core-decorators": "^0.19.0",
"debug": "^2.6.8",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"istanbul": "^0.4.5",
"lodash": "^4.5.0",
"mocha": "^3.2.0",
"mocha-eslint": "^3.0.1",
"nock": "^9.0.13"
}
}