forked from whoisandy/react-rangeslider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·110 lines (110 loc) · 3.55 KB
/
package.json
File metadata and controls
executable file
·110 lines (110 loc) · 3.55 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
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
101
102
103
104
105
106
107
108
109
110
{
"name": "react-rangeslider",
"version": "2.3.0",
"description": "A lightweight react component that acts as a HTML5 input range slider polyfill",
"main": "lib/index.js",
"scripts": {
"clean:lib": "del lib umd",
"clean:publish": "del publish",
"clean": "npm run clean:lib && npm run clean:publish",
"lint": "eslint src",
"test": "npm run lint && jest",
"coverage": "npm test -- --coverage",
"build:less": "lessc ./src/rangeslider.less ./lib/index.css",
"build:less:umd": "lessc ./src/rangeslider.less ./umd/rangeslider.css",
"build:less:umd:min": "lessc --clean-css ./src/rangeslider.less ./umd/rangeslider.min.css",
"build:lib": "cross-env NODE_ENV=production babel ./src --stage 0 -d ./lib --ignore __tests__",
"build:umd": "cross-env NODE_ENV=production webpack ./src/index.js ./umd/rangeslider.js",
"build:min": "cross-env NODE_ENV=production webpack -p ./src/index.js ./umd/rangeslider.min.js",
"build": "npm run build:less && npm run build:lib && npm run build:umd && npm run build:min && npm run build:less:umd && npm run build:less:umd:min",
"postbuild": "mkdir publish && cp -rf lib publish && cp -rf umd publish && cp LICENSE publish && cp package.json publish && cp README.md publish",
"prebuild": "npm run clean && npm test",
"deploy": "gh-pages -d publish -b publish"
},
"repository": {
"type": "git",
"url": "https://github.com/headsetapp/react-rangeslider.git"
},
"files": [
"lib",
"umd"
],
"keywords": [
"rangeslider",
"range-slider",
"react-rangeslider",
"input",
"range",
"react",
"slider"
],
"author": {
"name": "Bhargav Anand",
"email": "rjn143@gmail.com",
"url": "github.com/whoisandy"
},
"engines": {
"node": ">=6"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/headsetapp/react-rangeslider/issues"
},
"homepage": "https://github.com/headsetapp/react-rangeslider#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^15.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^2.0.1",
"css-loader": "^0.25.0",
"del-cli": "^0.2.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^3.5.0",
"eslint-config-standard": "^6.0.0",
"eslint-config-standard-jsx": "^3.0.0",
"eslint-config-standard-react": "^4.0.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.1",
"gh-pages": "^0.11.0",
"jest": "^22.4.3",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"less-plugin-clean-css": "^1.5.1",
"marked": "^0.3.6",
"prettier": "1.12.1",
"prop-types": "^15.6.1",
"raw-loader": "^0.5.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.3.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.0"
},
"dependencies": {
"classnames": "^2.2.5",
"resize-observer-polyfill": "^1.5.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"jest": {
"testURL": "http://localhost",
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"moduleNameMapper": {
".*\\.less$": "<rootDir>/src/"
}
}
}