-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "react-proslider",
"version": "0.0.3",
"description": "A slider component in react",
"main": "dist/react-proslider.cjs.js",
"jsnext:main": "dist/react-proslider.esm.js",
"module": "dist/react-proslider.esm.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:js": "kcd-scripts build --bundle",
"build:css": "node-sass src/styles/ -o dist/ && postcss dist/*.css --use autoprefixer -d dist/ && postcss dist/*.css --use cssnano -d dist/",
"build": "npm run build:js && npm run build:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neha3011/react-proslider.git"
},
"keywords": [
"react",
"react-slider",
"slider",
"input range",
"uislider",
"react-proslider"
],
"author": "Neha Singh",
"license": "ISC",
"bugs": {
"url": "https://github.com/Neha3011/react-proslider/issues"
},
"homepage": "https://github.com/Neha3011/react-proslider#readme",
"peerDependencies": {
"react": ">=15"
},
"dependencies": {
"classnames": "2.2.5",
"get-size": "2.0.2"
},
"devDependencies": {
"kcd-scripts": "0.27.0",
"node-sass": "4.5.3",
"autoprefixer": "7.1.6",
"cssnano": "3.10.0",
"postcss-cli": "4.1.1",
"react": "16.0.0"
}
}