This repository has been archived by the owner on Sep 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
99 lines (99 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@gramps/cli",
"version": "0.0.0-development",
"description": "CLI for creating and developing with GrAMPS data sources.",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/gramps-graphql/gramps-cli.git"
},
"contributors": [
"Jason Lengstorf <jason.lengstorf@ibm.com>",
"Eric Wyne <ecwyne@gmail.com>"
],
"license": "MIT",
"bin": {
"gramps": "dist/gramps.js"
},
"scripts": {
"gramps": "./dist/gramps.js",
"prepush": "npm test",
"build": "babel src -d dist",
"lint": "eslint {src, test}/**/*.js",
"test": "npm run lint --silent && npm run test:unit",
"test:unit": "cross-env NODE_ENV=test LOG4JS_LEVEL='OFF' jest --coverage",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"semantic-release": "semantic-release"
},
"dependencies": {
"@gramps/gramps": "^1.0.0",
"apollo-server-express": "^1.3.2",
"babel-core": "^6.26.0",
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"cpy": "^7.0.0",
"cross-env": "^5.1.1",
"cross-spawn": "^5.1.0",
"del": "^3.0.0",
"express": "^4.16.2",
"get-port": "^3.2.0",
"globby": "^7.1.1",
"graphql-playground-middleware-express": "^1.3.8",
"mkdirp": "^0.5.1",
"node-cleanup": "^2.1.2",
"nodemon": "^1.19.0",
"yargs": "^10.0.3"
},
"peerDependencies": {
"graphql": "^0.11.7 || ^0.12.0"
},
"devDependencies": {
"all-contributors-cli": "^4.10.1",
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.0.0",
"babel-plugin-inline-import": "^2.0.6",
"babel-preset-env": "^1.6.0",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-prettier": "^2.4.0",
"graphql": "^0.12.3",
"graphql-tools": "^2.14.1",
"husky": "^0.14.3",
"jest": "^22.0.0",
"prettier": "^1.5.3",
"semantic-release": "^15.13.12"
},
"jest": {
"coverageReporters": [
"json",
"text",
"lcov"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"directories": {
"doc": "docs",
"test": "test"
},
"keywords": [
"graphql",
"apollo"
]
}