-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "react-managed-input",
"version": "0.1.2",
"description": "React managed input",
"main": "lib/input.js",
"scripts": {
"build": "rollup -c",
"example": "babel example/index.js --out-file example/example.js",
"lint": "eslint ."
},
"keywords": [
"react",
"input",
"caret",
"component"
],
"author": "Piotr Tomasz Monarski",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Monar/react-managed-input"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.3.0",
"eslint-plugin-react": "^7.1.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0"
},
"peerDependencies": {
"prop-types": "^15.0.0 || ^16.0.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
}
}