-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "saturn-gql",
"version": "1.0.3",
"description": "package modularized apollo-server schema",
"main": "lib/index.js",
"repository": "[email protected]:electric-it/saturn-gql.git",
"author": "Brian Kurtz",
"contributors": [
"Brian Kurtz (https://github.com/bskurtz)"
],
"license": "Apache-2.0",
"scripts": {
"test": "mocha --require babel-register",
"build": "rm -Rf lib && mkdir lib && babel -q src -d lib",
"commit-build": "git add lib/."
},
"pre-commit": [
"test",
"build",
"commit-build"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"expect": "^1.20.2",
"graphql": "^0.12.3",
"graphql-tools": "^2.14.1",
"mocha": "^4.0.1",
"pre-commit": "^1.2.2"
},
"dependencies": {
"lodash": "^4.17.4"
}
}