-
Notifications
You must be signed in to change notification settings - Fork 234
/
package.json
100 lines (100 loc) · 3.3 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"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": "^6.2.10",
"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": "^2.1.0",
"jasmine-core": "^2.5.2",
"karma": "^1.4.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"node-sass": "^4.3.0",
"postcss-loader": "^1.2.2",
"react": "^15.5.4",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.5.4",
"sass-lint": "^1.10.2",
"sass-loader": "^6.0.3",
"sasslint-webpack-plugin": "^1.0.4",
"style-loader": "^0.14.0",
"uglify-js": "^2.8.16",
"uglifyjs-webpack-plugin": "^0.3.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"scripts": {
"prebuild": "npm test && 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 node-sass src/scss --recursive --source-map true --output lib/css",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file",
"dev": "webpack-dev-server --inline --config webpack-example.config.babel.js --content-base example",
"docs": "esdoc",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint src/js/ --ext .js --ext .jsx",
"lint:scss": "sass-lint --verbose --no-exit",
"prepublish": "npm run build",
"pretest": "npm run lint",
"test": "karma start --single-run",
"preversion": "npm test",
"version": "npm run changelog && git add CHANGELOG.md"
},
"dependencies": {
"autobind-decorator": "^1.3.4",
"prop-types": "^15.5.8"
}
}