-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 KB
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
{
"name": "@pickjunk/use-form",
"version": "1.0.0",
"description": "react form hook, so young, so simple",
"main": "lib/index.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run clean && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly --declarationDir ./lib",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx,.js\" --source-maps inline",
"clean": "rimraf ./*.d.ts lib",
"prepublishOnly": "npm run clean && npm run build",
"postpublish": "npm run clean && npm run build:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pickjunk/use-form.git"
},
"keywords": [
"react",
"form",
"hook"
],
"author": "ChieveiT",
"license": "MIT",
"bugs": {
"url": "https://github.com/pickjunk/use-form/issues"
},
"homepage": "https://github.com/pickjunk/use-form#readme",
"devDependencies": {
"@babel/core": "7.4.0",
"@babel/plugin-transform-runtime": "7.4.0",
"@babel/preset-env": "7.4.2",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"rimraf": "2.6.3",
"@babel/cli": "7.2.3",
"@types/react": "16.8.8",
"react": "16.8.6",
"rxjs": "6.5.2",
"@babel/runtime": "7.4.3",
"typescript": "3.3.4000",
"babel-plugin-import": "1.11.0"
},
"peerDependencies": {
"react": "^16.8.0",
"rxjs": "^6.0.0",
"@babel/runtime": "^7.4.0"
}
}