-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"name": "react-motion-slider-input",
"version": "0.8.1",
"description": "A slider input component for react",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Rohea/react-motion-slider-input.git"
},
"scripts": {
"dev": "webpack-dev-server -c --port=8001",
"prepublish": "npm run babel && npm run sass",
"babel": "node_modules/babel-cli/bin/babel.js src --out-dir lib",
"sass": "node_modules/node-sass/bin/node-sass src/scss/SliderInput.scss lib/SliderInput.css"
},
"babel": {
"presets": ["es2015", "react"]
},
"peerDependencies": {
"prop-types": "^15.5.0",
"react": ">=0.13.2 || ^0.14 || ^15.0.0",
"react-dom": ">=0.13.2 || ^0.14 || ^15.0.0",
"react-motion": "^0.5.0"
},
"author": {
"name": "Tomi Saarinen",
"email": "tomi.saarinen@rohea.com"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.25.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"node-sass": "^3.9.3",
"prop-types": "^15.5.10",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-motion": "^0.5.0",
"sass-loader": "^4.0.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1"
},
"dependencies": {
"immutable": ">=3.8.0 <4.0.0"
}
}