-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 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
52
53
54
55
56
57
58
{
"name": "data-form-react",
"version": "1.0.0",
"description": "DataForm React",
"main": "lib/index.js",
"module": "lib/index.es.js",
"jsnext:main": "lib/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AntonioArts/data-form-react.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AntonioArts/data-form-react/issues"
},
"homepage": "https://github.com/AntonioArts/data-form-react#readme",
"dependencies": {
"@types/classnames": "^2.2.9",
"@types/validator": "^12.0.1",
"classnames": "^2.2.6",
"validator": "^12.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"jest": "^24.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts-ts": "^4.0.8",
"react-test-renderer": "^16.12.0",
"rollup": "^1.27.10",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}