-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "graphql-party",
"version": "1.0.0-alpha4",
"description": "A @decorator based GraphQL schema builder.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/j/graphql-party.git"
},
"author": "Jordan Stout",
"license": "MIT",
"scripts": {
"prepublish": "yarn run build",
"build": "rm -rf dist && tsc -d",
"test": "nyc mocha",
"test:watch": "mocha --watch-extensions ts --watch",
"pretty": "prettier --write 'src/**/*.ts' --write 'test/**/*.ts'",
"precommit": "pretty-quick --staged",
"postcommit": "git diff --name-only HEAD^ | xargs git add"
},
"nyc": {
"extension": [".ts"],
"include": ["src/**/*.ts"],
"reporter": ["html"],
"all": true
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/graphql": "^0.12.3",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.6",
"chai": "^4.1.2",
"faker": "^4.1.0",
"graphql": "^0.13.1",
"graphql-iso-date": "^3.5.0",
"husky": "^0.14.3",
"mocha": "^5.0.0",
"node-dev": "^3.1.3",
"nyc": "^11.4.1",
"prettier": "^1.10.2",
"pretty-quick": "^1.4.1",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0",
"typedi": "^0.7.0",
"typescript": "^2.7.1"
},
"dependencies": {
"globby": "^8.0.1",
"reflect-metadata": "^0.1.12"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0"
}
}