-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "@entria/graphql-findbreakingchanges",
"version": "1.0.1",
"bin": {
"graphql-findbreakingchanges": "./bin/find-breaking-changes"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"graphql": "^0.13.2",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"flow-bin": "^0.73.0"
},
"license": "ISC",
"main": "lib/index.js",
"preferGlobal": true,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "babel src -d lib",
"flow": "flow",
"lint": "eslint .",
"prepublish": "npm run build",
"release:major": "npm version major && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:patch": "npm version patch && git push --follow-tags && npm publish",
"start": "babel-node src/index.js",
"watch": "babel -w -d ./lib ./src"
}
}