-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 993 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 993 Bytes
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
{
"name": "amiable-forms",
"version": "2.0.0-rc1",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "ts-standard",
"test": "jest --watch",
"syncVersion": "node syncVersion.js"
},
"keywords": [
"react",
"form",
"hooks"
],
"standard": {
"env": [
"jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/frodare/amiable-forms.git"
},
"author": "Charles Howard",
"license": "MIT",
"bugs": {
"url": "https://github.com/frodare/amiable-forms/issues"
},
"homepage": "https://github.com/frodare/amiable-forms#readme",
"peerDependencies": {
"react": ">=16.8.6"
},
"devDependencies": {
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.20",
"jest": "^27.1.0",
"ts-standard": "^10.0.0",
"typescript": "^4.4.2"
},
"dependencies": {}
}