forked from davidchin/react-input-range
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.61 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
{
"name": "react-input-range",
"version": "1.3.0",
"description": "React component for inputting numeric values within a range",
"keywords": [
"react",
"react-component",
"range-slider",
"input-range",
"range",
"slider",
"form",
"input"
],
"repository": {
"type": "git",
"url": "https://github.com/davidchin/react-input-range.git"
},
"main": "lib/js/index.js",
"types": "react-input-range.d.ts",
"author": "David Chin",
"license": "MIT",
"devDependencies": {
"@types/react": "^15.0.1",
"autoprefixer": "^6.6.1",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-react": "^6.22.0",
"conventional-changelog-cli": "~1.2.0",
"css-loader": "^0.27.3",
"dom4": "^1.8.3",
"enzyme": "^2.7.1",
"esdoc": "^0.5.2",
"esdoc-importpath-plugin": "^0.1.0",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^3.0.0",
"jasmine-core": "^2.5.2",
"sass": "^1.0.0",
"postcss-loader": "^1.2.2",
"react": "^15.5.4",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.5.4",
"sass-loader": "^7.0.0",
"style-loader": "^0.14.0",
"uglify-js": "^2.8.16",
"uglifyjs-3-webpack-plugin": "^1.0.0",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.4.2"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"scripts": {
"prebuild": "rm -rf lib",
"build": "npm run build:lib && npm run build:scss && npm run build:bundle",
"build:bundle": "NODE_ENV=production webpack",
"build:lib": "NODE_ENV=production babel src/js --out-dir lib/js --source-maps",
"build:scss": "NODE_ENV=production sass src/scss:lib/css",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file",
"docs": "esdoc",
"lint": "npm run lint:js",
"lint:js": "eslint src/js/ --ext .js --ext .jsx",
"prepublish": "npm run build",
"version": "npm run changelog && git add CHANGELOG.md"
},
"dependencies": {
"autobind-decorator": "^1.3.4",
"prop-types": "^15.5.8"
}
}