This repository has been archived by the owner on Oct 9, 2020. It is now read-only.
forked from apollographql/persistgraphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "cptls-persistgraphql",
"version": "0.4.2",
"description": "A build tool for GraphQL projects.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"typescript": {
"definition": "lib/index.d.ts"
},
"scripts": {
"pretest": "yarn compile",
"test": "mocha --reporter spec --full-trace lib/test/tests.js",
"posttest": "yarn lint",
"compile": "tsc",
"lint": "tslint -c tslint.json test/**/*.ts; tslint src/**/*.ts",
"publish": "yarn compile && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Capitolis/persistgraphql.git"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Capitolis/persistgraphql/issues"
},
"homepage": "https://github.com/Capitolis/persistgraphql#readme",
"bin": {
"persistgraphql": "./bin/persistgraphql"
},
"dependencies": {
"apollo-client": "^1.1",
"graphql": ">=0.9.4 <0.11",
"graphql-tag": "^2.0.0",
"lodash": "^4.17.4",
"whatwg-fetch": "^2.0.3",
"yargs": "^7.1.0"
},
"devDependencies": {
"@types/chai": "^3.5.1",
"@types/express": "^4.0.35",
"@types/lodash": "^4.14.63",
"@types/mocha": "^2.2.41",
"@types/node": "7.0.14",
"@types/yargs": "^6.6.0",
"chai": "^3.5.0",
"es6-promise": "^4.1.0",
"fetch-mock": "^5.10.0",
"isomorphic-fetch": "^2.2.1",
"mocha": "^3.3.0",
"source-map-support": "^0.4.15",
"tslint": "^5.1.0",
"typescript": "^2.3.1"
},
"optionalDependencies": {
"@types/graphql": "^0.9.0",
"@types/isomorphic-fetch": "0.0.34"
},
"publishConfig": {
"registry": "http://nexus.capitolis.com:8081/repository/cptls-npm/"
}
}