-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 939 Bytes
/
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
{
"name": "batchql",
"version": "1.1.18",
"description": "Don't just graphql, batchql.",
"scripts": {
"prestart": "rimraf build/*",
"start-old": "tsc -w src/batchql.ts --outDir build -d",
"start": "node fuse.js",
"prebuild": "rimraf build/*",
"build": "NODE_ENV=production tsc src/batchql.ts --outDir build -d; echo \"done\";",
"test": "node fuse.js test",
"deploy": "npm run build; git commit -am \"snapshot\"; npm version patch; git push origin master; npm publish;"
},
"repository": {
"type": "git",
"url": "[email protected]/matthiasak/clan"
},
"keywords": [
"graphql",
"mux",
"multiplex"
],
"main": "build/batchql.js",
"author": "Matt Keas (@matthiasak)",
"license": "MIT",
"dependencies": {
"clan-fp": "^1.1.40"
},
"devDependencies": {
"fuse-box": "^2.3.3",
"fuse-test-runner": "^1.0.14",
"rimraf": "^2.6.2",
"typescript": "^2.8.1"
}
}