-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.93 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.93 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
{
"name": "react-infinite-range",
"version": "0.4.1",
"description": "React Component for creating infinite range inputs.",
"main": "dist/react-infinite-range.cjs.js",
"module": "dist/react-infinite-range.esm.js",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"flow-check": "flow check",
"format": "prettier --write lib/**/*.js rollup.config.js",
"preversion": "npm run test && npm run flow-check",
"prepublish": "npm run build"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.3",
"prop-types": ">=15"
},
"keywords": [
"react",
"react-component",
"range-input"
],
"author": "Eduard Kyvenko <eduard.kyvenko@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/halfzebra/react-infinite-range.git"
},
"license": "MIT",
"dependencies": {
"react-motion": "^0.5.2",
"@babel/runtime": "7.0.0-rc.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-rc.1",
"@babel/plugin-transform-runtime": "^7.0.0-rc.1",
"@babel/polyfill": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"@babel/preset-flow": "^7.0.0-rc.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.14",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"flow-bin": "^0.53.1",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.4.2",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0"
},
"jest": {
"testRegex": "(.*\\.spec.js)$"
}
}