forked from liamcurry/gql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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": "gql",
"version": "0.0.1",
"description": "Tools for working with GraphQL documents",
"main": "packages/gql-cli/index.js",
"babel": {
"presets": [
"latest",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-flow-strip-types"
]
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"concurrently": "^3.1.0",
"eslint": "^3.9.1",
"flow-bin": "^0.34.0",
"lerna": "2.0.0-beta.30",
"nodemon": "^1.11.0"
},
"scripts": {
"build": "lerna exec -- babel --out-dir dist src && chmod +x packages/**/dist/index.js",
"publish": "lerna publish",
"postinstall": "lerna bootstrap",
"flow": "flow check",
"lint": "lerna exec -- eslint --ignore-path ../../.gitignore --config ../../.eslint.json 'src/**/*.js' 'test/**/*.js'",
"test": "lerna exec -- ava",
"watch-build": "npm run build -- -w",
"watch-test": "npm run test -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liamcurry/gql.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/liamcurry/gql/issues"
},
"homepage": "https://github.com/liamcurry/gql#readme"
}