-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "ts2gql",
"version": "2.4.0",
"description": "Converts a TypeScript type hierarchy into GraphQL's IDL.",
"homepage": "https://github.com/convoyinc/ts2gql",
"bugs": "https://github.com/convoyinc/ts2gql/issues",
"license": "Apache-2.0",
"repository": "convoyinc/ts2gql",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist/src",
"*.md",
"bin/*"
],
"scripts": {
"clean": "./scripts/clean.sh",
"compile": "./scripts/compile.sh",
"prepublish": "./scripts/prepublish.sh",
"release": "./scripts/release.sh",
"start": "./scripts/start.sh",
"test:compile": "./scripts/test:compile.sh",
"test:integration": "./scripts/test:integration.sh",
"test:style": "./scripts/test:style.sh",
"test:unit": "./scripts/test:unit.sh",
"test": "./scripts/test.sh"
},
"bin": {
"ts2gql": "./bin/ts2gql"
},
"dependencies": {
"doctrine": "^1.2.2",
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/chai": "3.5.2",
"@types/chai-as-promised": "0.0.30",
"@types/lodash": "4.14.85",
"@types/node": "12.12.14",
"@types/sinon": "2.3.4",
"@types/sinon-chai": "2.7.26",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-jest-diff": "nevir/chai-jest-diff#built-member-assertions",
"jest": "21.1.0",
"jest-junit": "3.0.0",
"sinon": "3.2.1",
"sinon-chai": "2.13.0",
"tslint": "5.8.0",
"tslint-no-unused-expression-chai": "0.0.3",
"typescript": "2.6.2"
},
"peerDependencies": {
"typescript": ">=2.0.9"
}
}