-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.57 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
{
"name": "graphql-strong",
"version": "0.8.0",
"description": "Define your GraphQL schemas with confidence that your values are correct.",
"author": "Caleb Meredith <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/calebmer/graphql-strong#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/calebmer/graphql-strong.git"
},
"bugs": {
"url": "https://github.com/calebmer/graphql-strong/issues"
},
"keywords": [
"graphql",
"typescript",
"schema",
"strong",
"definition",
"define",
"api",
"types",
"typecheck"
],
"main": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"package.json",
"README.md",
"LICENSE",
"build"
],
"scripts": {
"preversion": "npm run ci",
"prepublish": "npm run build",
"lint": "tslint 'src/**/*.ts'",
"test": "jest",
"test-watch": "jest --watch",
"ci": "npm run lint && npm run test",
"build": "rm -rf build && tsc"
},
"peerDependencies": {
"graphql": ">=0.6.0 <1.0.0"
},
"devDependencies": {
"@types/graphql": "^0.8.2",
"@types/jest": "^16.0.1",
"@types/node": "^6.0.52",
"graphql": "^0.8.2",
"jest": "^19.0.2",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
".ts": "<rootDir>/resources/jest-ts-transform.js"
},
"testRegex": "/__tests__/[^.]+-test.ts$",
"browser": false,
"testEnvironment": "node"
}
}