-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "graphql-mocks",
"version": "0.1.0",
"description": "Create mock data from GraphQL queries",
"main": "./lib/index.js",
"author": "Matt Petrie <[email protected]>",
"license": "MIT",
"scripts": {
"build": "BABEL_ENV='dev' yarn test && rollup -c",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "BABEL_ENV='test' nyc ava",
"test:ci": "BABEL_ENV='test' nyc ava",
"test:watch": "BABEL_ENV='test' ava --watch"
},
"dependencies": {
"faker": "^4.1.0",
"graphql-anywhere": "^3.1.0",
"lodash-es": "^4.17.4"
},
"devDependencies": {
"ava": "^0.21.0",
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-rewire": "^1.1.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^4.4.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.1.2",
"flat": "^4.0.0",
"graphql": "^0.10.5",
"graphql-tag": "^2.4.2",
"lodash": "^4.17.4",
"nyc": "^11.1.0",
"prettier": "^1.5.3",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"sinon": "^3.0.0"
},
"ava": {
"require": [
"babel-register"
]
}
}