-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "formstate-ts",
"version": "0.6.0",
"description": "type safe typescript library for managing form state in react",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Herlevsen/formstate-ts"
},
"scripts": {
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"test": "jest",
"build": "rimraf lib && tsc && npm run docs",
"docs": "typedoc --out docs ./src",
"lint": "eslint --ext ts --ext tsx src/*",
"precommit": "npm run prettier && npm run lint",
"prettier": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\" \"test/**/*.{ts,tsx,js,jsx,json}\""
},
"author": "Jens Herlevsen",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@testing-library/react": "^9.3.0",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.11",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"prettier": "1.18.2",
"react": "^16.11.0",
"react-dom": "^16.10.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3",
"utility-types": "^3.8.0"
},
"peerDependencies": {
"react": "^16.8.0"
}
}