Skip to content

Commit 436c404

Browse files
committed
0.2.0
1 parent 21fb569 commit 436c404

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

package.json

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "@volst/graphql-form-helpers",
3-
"version": "0.1.1",
4-
"description":
5-
"Makes it easy to work with nested data in forms with GraphQL.",
3+
"version": "0.2.0",
4+
"description": "Makes it easy to work with nested data in forms with GraphQL.",
65
"author": "kees@volst.nl",
76
"repository": "Volst/graphql-form-helpers",
87
"license": "ISC",
@@ -12,16 +11,17 @@
1211
"engines": {
1312
"node": ">=8.0"
1413
},
15-
"files": ["dist"],
14+
"files": [
15+
"dist"
16+
],
1617
"scripts": {
1718
"build": "rm -rf dist && tsc",
1819
"lint": "tslint -p .",
1920
"prepublishOnly": "npm run -s build",
2021
"precommit": "pretty-quick --staged",
2122
"test": "jest --watch",
2223
"test-coverage": "jest --coverage",
23-
"ci":
24-
"npm run -s lint && npm run -s build && nm run -s size && npm run -s test-coverage && codecov",
24+
"ci": "npm run -s lint && npm run -s build && nm run -s size && npm run -s test-coverage && codecov",
2525
"size": "size-limit"
2626
},
2727
"devDependencies": {
@@ -44,12 +44,19 @@
4444
},
4545
"peerDependencies": {},
4646
"jest": {
47-
"roots": ["./src"],
47+
"roots": [
48+
"./src"
49+
],
4850
"transform": {
4951
"^.+\\.tsx?$": "ts-jest"
5052
},
5153
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
52-
"moduleFileExtensions": ["ts", "js", "json", "node"],
54+
"moduleFileExtensions": [
55+
"ts",
56+
"js",
57+
"json",
58+
"node"
59+
],
5360
"globals": {
5461
"ts-jest": {
5562
"enableTsDiagnostics": true

0 commit comments

Comments
 (0)