-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.61 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
56
57
{
"name": "persistgraphql-webpack-plugin",
"version": "0.5.4",
"description": "PersistGraphQL Webpack Plugin",
"main": "index.js",
"scripts": {
"lint": "eslint --fix . --ext js --ext json",
"posttest": "npm run lint",
"test":
"cross-env NODE_ENV=coverage nyc --check-coverage --lines 96 --branches 80 npm run tests",
"tests": "mocha",
"tests:watch": "cross-env mocha -w",
"tests:watch:debug": "cross-env DEBUG=webpack-virtual-modules mocha -w",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sysgears/persistgraphql-webpack-plugin.git"
},
"keywords": ["webpack-plugin", "graphql", "apollo-client"],
"author": "SysGears INC",
"license": "MIT",
"bugs": {
"url": "https://github.com/sysgears/persistgraphql-webpack-plugin/issues"
},
"homepage":
"https://github.com/sysgears/persistgraphql-webpack-plugin#readme",
"devDependencies": {
"chai": "^4.0.0",
"cross-env": "^5.1.6",
"eslint": "^4.13.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-prettier": "^2.4.0",
"graphql-persisted-document-loader": "^1.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"memory-fs": "^0.4.1",
"mocha": "^3.2.0",
"nyc": "^11.0.2",
"prettier": "^1.6.1",
"webpack": "^3.1.0"
},
"dependencies": {
"persistgraphql": "^0.3.5",
"webpack-virtual-modules": "^0.1.10"
},
"files": ["*.js"],
"lint-staged": {
"*.{js,jsx,json}": [
"eslint --fix",
"git add"
]
},
"greenkeeper": {}
}