-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 819 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 819 Bytes
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
{
"name": "sails-hook-easy-graphql",
"version": "0.0.1-unstable",
"description": "Graphql controller for sails",
"repository": "https://github.com/bashz/sails-hook-graphql",
"main": "index.js",
"files": [
"src/*",
"test/basic.js",
"*.json",
"*.js"
],
"sails": {
"isHook": true,
"hookName": "graphql"
},
"devDependencies": {
"mocha": "^5.2.0",
"sails": "^1.2.2",
"supertest": "^3.4.1"
},
"peerDependencies": {
"sails": "^1.2.2"
},
"scripts": {
"test": "./node_modules/.bin/mocha --timeout 30000 --slow 500 -R spec test/start.js --recursive test/integration test/close.js"
},
"author": "Bashz <nemlaghi.bechir@gmail.com>",
"license": "MIT",
"dependencies": {
"chai": "^4.2.0",
"graphql": "^14.1.1",
"validator": "^10.11.0"
}
}