Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceK33z committed May 8, 2018
1 parent 21fb569 commit 436c404
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "@volst/graphql-form-helpers",
"version": "0.1.1",
"description":
"Makes it easy to work with nested data in forms with GraphQL.",
"version": "0.2.0",
"description": "Makes it easy to work with nested data in forms with GraphQL.",
"author": "kees@volst.nl",
"repository": "Volst/graphql-form-helpers",
"license": "ISC",
Expand All @@ -12,16 +11,17 @@
"engines": {
"node": ">=8.0"
},
"files": ["dist"],
"files": [
"dist"
],
"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 && nm run -s size && npm run -s test-coverage && codecov",
"ci": "npm run -s lint && npm run -s build && nm run -s size && npm run -s test-coverage && codecov",
"size": "size-limit"
},
"devDependencies": {
Expand All @@ -44,12 +44,19 @@
},
"peerDependencies": {},
"jest": {
"roots": ["./src"],
"roots": [
"./src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "js", "json", "node"],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
Expand Down

0 comments on commit 436c404

Please sign in to comment.