-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.6 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.6 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
{
"name": "react-base-form-fields",
"version": "0.0.2",
"description": "Set of base form field components that work well with react-get-form-data.",
"main": "./lib/index.js",
"scripts": {
"build": "babel src -d lib",
"clean": "rm -rf lib",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheArtling/react-base-form-fields.git"
},
"keywords": [
"HTML",
"form",
"forms",
"input",
"components"
],
"author": [
"Martin Brochhaus <mbrochh@gmail.com>"
],
"peerDependencies": {
"radium": "^0.18.1",
"react": "^0.14.0 || ^15.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^6.1.2",
"babel-jest": "17.0.2",
"babel-plugin-check-es2015-constants": "^6.3.13",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.2.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.3.13",
"babel-plugin-transform-es2015-classes": "^6.3.13",
"babel-plugin-transform-es2015-computed-properties": "^6.3.13",
"babel-plugin-transform-es2015-destructuring": "^6.3.13",
"babel-plugin-transform-es2015-function-name": "^6.3.13",
"babel-plugin-transform-es2015-literals": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
"babel-plugin-transform-es2015-object-super": "^6.3.13",
"babel-plugin-transform-es2015-parameters": "^6.3.13",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.3.13",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-react-display-name": "^6.4.0",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-register": "^6.3.13",
"enzyme": "2.6.0",
"eslint": "^3.1.1",
"eslint-plugin-react": "^5.1.1",
"jest": "17.0.3",
"radium": "0.18.1",
"react-addons-test-utils": "15.4.0",
"react-get-form-data": "git+https://github.com:TheArtling/react-get-form-data.git",
"react-test-renderer": "15.4.0"
},
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TheArtling/react-base-form-fields/issues"
},
"homepage": "https://github.com/TheArtling/react-base-form-fields#readme",
"dependencies": {
"prop-types": "^15.6.1"
}
}