-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.59 KB
/
package.json
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
{
"name": "react-form-controlled",
"version": "0.20.11",
"description": "Intuitive react forms for building powerful applications",
"author": {
"name": "Zlatko Fedor",
"email": "[email protected]",
"url": "http://www.cherryprojects.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/seeden/react-form-controlled.git"
},
"keywords": [
"react",
"react-component",
"react-form",
"form",
"controlled",
"input",
"select",
"react-select",
"textarea",
"redux-form",
"redux"
],
"private": false,
"license": "MIT",
"main": "./dist/index.js",
"browser": "./lib/index.js",
"module": "./module/index.js",
"esnext": "./src/index.js",
"engines": {
"node": ">= 6.10"
},
"scripts": {
"prepublish": "npm run build",
"test": "jest ./src/",
"test:coverage": "jest --coverage ./src/",
"test:watch": "jest --watch ./src/",
"build-browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./lib --source-maps --copy-files",
"build-module": "cross-env BABEL_ENV=module babel ./src --out-dir ./module --source-maps --copy-files",
"build-node": "babel ./src --out-dir ./dist --source-maps --copy-files",
"build": "npm run build-node && npm run build-browser && npm run build-module",
"eslint": "node ./node_modules/eslint/bin/eslint.js --ext .js,.jsx ./src"
},
"jest": {
"setupFiles": [
"<rootDir>/setupJest.js"
]
},
"dependencies": {
"babel-runtime": "^6.26.0",
"diacritics": "^1.3.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-proto-to-assign": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.1.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-test-renderer": "^16.1.1"
},
"peerDependencies": {
"react": "15.x || 16.x"
},
"typings": "react-form-controlled.d.ts"
}