-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 1.66 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
71
72
73
74
75
76
{
"name": "@volst/graphql-form-helpers",
"version": "0.2.5",
"description": "Makes it easy to work with nested data in forms with GraphQL.",
"author": "[email protected]",
"repository": "Volst/graphql-form-helpers",
"license": "ISC",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=8.0"
},
"files": [
"dist"
],
"keywords": [
"graphql",
"forms",
"prisma"
],
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "tslint -p .",
"prepublishOnly": "npm run -s build",
"precommit": "pretty-quick --staged",
"test": "jest --watch",
"test-coverage": "jest --coverage",
"ci": "npm run -s lint && npm run -s build && npm run -s size && npm run -s test-coverage && codecov",
"size": "size-limit"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@volst/tslint-config": "^0.2.1",
"codecov": "^3.0.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"size-limit": "^0.17.0",
"ts-jest": "^22.4.5",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {
"deepmerge": "^2.1.0",
"is-pojo": "^1.0.2"
},
"peerDependencies": {},
"jest": {
"roots": [
"./src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
},
"size-limit": [
{
"limit": "2 KB",
"path": "dist/index.js"
}
]
}