-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (79 loc) · 2.16 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
{
"name": "feathers-apollo-server",
"description": "A feathers-apollo-server service plugin for for feathers minimalist real-time framework ",
"version": "0.0.0-development",
"homepage": "https://github.com/rollymaduk/feathers-apollo-server",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rollymaduk/feathers-apollo-server.git"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/rollymaduk/feathers-apollo-server/issues"
},
"engines": {
"node": ">= 4.6.0"
},
"scripts": {
"compile": "rimraf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"lint": "semistandard src/**/*.js test/**/*.js --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run compile && npm run lint && npm run coverage",
"start": "npm run compile && node example/app",
"commit": "git cz -a",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"debug": "^2.3.3",
"feathers-errors": "^2.5.0",
"graphql": "^0.9.1",
"graphql-server-express": "^0.8.0",
"graphql-tools": "^1.0.0",
"lodash": "^4.17.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"feathers": "^2.0.2",
"feathers-rest": "^1.5.2",
"feathers-socketio": "^2.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.2",
"semistandard": "^9.1.0",
"testdouble": "^3.0.0"
}
}