forked from mybuilder/kongfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "kongfig",
"version": "1.2.10",
"description": "A tool for Kong to allow declarative configuration.",
"repository": "https://github.com/mybuilder/kongfig",
"bin": {
"kongfig": "./bin/kongfig"
},
"preferGlobal": true,
"scripts": {
"test": "mocha --compilers js:babel-core/register test/index.js",
"build": "babel src --out-dir lib",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"publish-patch": "npm version patch && npm publish"
},
"author": "MyBuilder Ltd",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.2.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"isomorphic-fetch": "^2.2.0",
"js-yaml": "^3.4.6",
"minimist": "^1.2.0",
"object-assign": "^4.0.1",
"prettyjson": "^1.1.3"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-2": "^6.1.18",
"expect.js": "^0.3.1",
"mocha": "^2.3.4"
}
}