forked from bietkul/react-reactive-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.46 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-reactive-form",
"version": "1.0.32",
"description": "Angular like Reactive Forms in React",
"keywords": [
"forms",
"form",
"reactive",
"reactive-form",
"form-generator",
"form-builder",
"android",
"ios",
"observer",
"subscription",
"react",
"react-native",
"form-controls"
],
"main": "dist/react-reactive-form.cjs.js",
"jsnext:main": "dist/react-reactive-form.es.js",
"module": "dist/react-reactive-form.es.js",
"files": [
"dist"
],
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "lint-staged && npm start validate",
"prepare": "npm start validate",
"postinstall": "opencollective-postinstall"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bietkul/react-reactive-form"
},
"author": "Kuldeep Saxena <kul.anjuma@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bietkul/react-reactive-form/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.6",
"eslint": "^4.16.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"nps": "^5.9.0",
"nps-utils": "^1.5.0",
"prettier": "^1.12.1",
"prettier-eslint-cli": "^4.4.2",
"prop-types": "^15.6.0",
"react": "^16.4.2",
"rimraf": "^2.6.2",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"rollup-watch": "^4.3.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.4.0-0",
"prop-types": "^15.6.0"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write",
"git add"
]
},
"typings": "dist/index.d.ts",
"homepage": "https://github.com/bietkul/react-reactive-form#readme",
"dependencies": {
"opencollective-postinstall": "^2.0.2",
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-reactive-form"
}
}