-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 KB
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": "graphql-validity",
"version": "0.10.12",
"description": "Make business logic validation easy on the graphql side without adding any declarations or modifications to the existing graphql schema.",
"main": "index.js",
"scripts": {
"clean:dts": "find . -name '*.d.ts' -not -wholename '*node_modules*' -not -wholename '*examples*' -type f -delete",
"clean:map": "find . -name '*.js.map' -not -wholename '*node_modules*' -not -wholename '*examples*' -type f -delete",
"clean:js": "find . -name '*.js' -not -wholename '*node_modules*' -not -wholename '*examples*' -type f -delete",
"clean:test": "rm -rf .nyc_output coverage",
"clean": "npm run clean:test && npm run clean:dts && npm run clean:map && npm run clean:js",
"build": "tsc && npm test",
"test": "tsc && nyc mocha"
},
"keywords": [
"graphql",
"errors",
"validation"
],
"repository": {
"type": "git",
"url": "git@github.com:MeetmeLeave/graphql-validity.git"
},
"bugs": {
"url": "https://github.com/MeetmeLeave/graphql-validity/issues"
},
"homepage": "https://github.com/MeetmeLeave/graphql-validity",
"author": "Vlad Martynenko <vladimir.martynenko.work@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.7",
"@types/mock-require": "2.0.0",
"@types/node": "12.6.3",
"@types/sinon": "7.0.13",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "5.2.0",
"nyc": "14.1.1",
"sinon": "7.3.2",
"source-map-support": "0.5.12",
"ts-node": "8.3.0",
"typescript": "3.5.3"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/test/**"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
]
}
}