-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 723 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 723 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
{
"name": "@unobtrusive/react-form-builder",
"version": "0.1.0-alpha.2",
"description": "A form builder for React, inspired by Rails.",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"build": "babel src --out-dir dist --ignore **/__tests__/**"
},
"keywords": [
"form",
"builder"
],
"author": "Nipun Paradkar",
"license": "ISC",
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"jest": "^26.6.0",
"pretty": "^2.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}