forked from mybuilder/kongfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 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
49
50
51
52
53
54
{
"name": "kongfig",
"version": "1.3.0",
"description": "A tool for Kong to allow declarative configuration.",
"repository": "https://github.com/mybuilder/kongfig",
"bin": {
"kongfig": "./bin/kongfig"
},
"preferGlobal": true,
"scripts": {
"pretest": "yarn build",
"test": "jest --runInBand",
"build": "babel src --out-dir lib",
"preversion": "yarn test",
"version": "yarn 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",
"invariant": "^2.2.2",
"isomorphic-fetch": "^2.2.0",
"js-yaml": "^3.4.6",
"minimist": "^1.2.0",
"object-assign": "^4.0.1",
"pad": "^1.1.0",
"prettyjson": "^1.1.3",
"semver": "^5.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-2": "^6.1.18",
"expect.js": "^0.3.1",
"jest": "^20.0.4"
},
"jest": {
"setupFiles": [
"<rootDir>/node_modules/babel-polyfill/dist/polyfill.js"
],
"testMatch": [
"<rootDir>/test/*.js",
"<rootDir>/test-integration/*.test.js"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/lib/"
]
}
}