-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "annotated-graphql",
"version": "0.1.1",
"description": "Annotated GraphQL",
"main": "dist/index.js",
"scripts": {
"compile": "babel src --ignore *.spec.js",
"test": "mocha 'src/**/*.spec.js' --require should --compilers js:babel-register",
"dev": "npm test -- --watch",
"dev:server": "npm run compile -- --out-dir ../annotated-graphql-server/node_modules/annotated-graphql/dist --watch",
"dist": "shx rm -rf dist && npm test && npm run compile -- --out-dir dist",
"prepublish": "npm run dist"
},
"files": [
"dist"
],
"keywords": [
"GraphQL",
"Annotations"
],
"author": "Alberto Mijares <almilo@almilo.es>",
"license": "MIT",
"dependencies": {
"dataloader": "^1.2.0",
"express-graphql": "^0.5.3",
"graphql-tools": "^0.5.0",
"request": "^2.69.0"
},
"peerDependencies": {
"graphql": "^0.6.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"mocha": "^2.4.5",
"should": "^8.2.2",
"shx": "^0.1.4",
"sinon": "^1.17.3"
},
"engines": {
"node": ">=6"
}
}