forked from whoisandy/react-rangeslider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.15 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
101
102
103
{
"name": "react-rangeslider",
"version": "1.0.9",
"description": "A lightweight react component that acts as a HTML5 input range slider polyfill",
"main": "lib/index",
"scripts": {
"clean:lib": "rimraf ./lib",
"clean:deploy": "rimraf ./deploy",
"lint": "eslint src example",
"test": "npm run lint && jest",
"start": "cross-env NODE_ENV=development node -r babel-register example/server.js",
"build:lib": "babel ./src --stage 0 -d ./lib --ignore ./tests",
"build:umd": "cross-env NODE_ENV=production webpack ./src/index.js ./lib/umd/ReactRangeslider.js",
"build:min": "cross-env NODE_ENV=production webpack -p ./src/index.js ./lib/umd/ReactRangeslider.min.js",
"build:example": "npm run clean:deploy && cross-env NODE_ENV=production webpack -p --config=example/webpack.config.js",
"build": "npm run build:lib && npm run build:umd && npm run build:min",
"prebuild": "npm run clean:lib && npm test",
"deploy": "npm run build:example && gh-pages -d deploy",
"predeploy": "npm run clean:deploy && npm run lint",
"postdeploy": "npm run clean:lib && npm run clean:deploy",
"prepublish": "npm run build",
"postpublish": "npm run deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/whoisandie/react-rangeslider.git"
},
"files": [
"lib"
],
"keywords": [
"rangeslider",
"range-slider",
"react-rangeslider",
"input",
"range",
"react",
"slider"
],
"author": {
"name": "Bhargav Anand",
"email": "rjn143@gmail.com",
"url": "github.com/whoisandie"
},
"engines": {
"node": ">=4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/whoisandie/react-rangeslider/issues"
},
"homepage": "https://github.com/whoisandie/react-rangeslider#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.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",
"babel-register": "^6.14.0",
"cross-env": "^2.0.1",
"css-loader": "^0.25.0",
"enzyme": "^2.4.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-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.22.0",
"jest": "^15.1.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"classnames": "^2.2.3"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"jest": {
"testPathDirs": [
"<rootDir>/src/"
]
}
}