-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
55
{
"name": "kongfig",
"version": "1.5.3",
"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.26.0",
"colors": "^1.1.2",
"commander": "^2.13.0",
"invariant": "^2.2.2",
"isomorphic-fetch": "^2.2.0",
"js-yaml": "^3.13.0",
"minimist": "^1.2.0",
"object-assign": "^4.0.1",
"pad": "^2.0.3",
"prettyjson": "^1.1.3",
"semver": "^5.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.1.18",
"expect.js": "^0.3.1",
"jest": "^22.1.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/"
]
}
}