-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "react-2step-range",
"version": "0.0.6",
"description": "A highly customizable replacement for the HTML range input with two levels of adjustment granularity",
"main": "dist/index.js",
"author": "Kyle Landell <kyle.landell@gmail.com>",
"license": "MIT",
"peerDependencies": {
"prop-types": "^15.x",
"react": "^15.x || ^16.x"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.0.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"codecov": "^2.3.0",
"enzyme": "^3.1.0",
"enzyme-to-json": "^3.1.1",
"eslint": "^3.19.0 || ^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"npm-check-updates": "^2.13.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"yarn": "^1.1.0"
},
"scripts": {
"check-dependencies": "ncu",
"cover": "codecov",
"lint": "eslint src/**",
"lint:fix": "yarn lint --fix",
"prepare": "babel ./src --out-dir ./dist",
"precommit": "yarn lint && yarn test:lite",
"prepush": "yarn lint && yarn test",
"test": "jest",
"test:lite": "jest --onlyChanged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klandell/react-2step-range.git"
},
"bugs": {
"url": "https://github.com/klandell/react-2step-range/issues"
},
"homepage": "https://github.com/klandell/react-2step-range#readme",
"files": [
"src/",
"dist/",
"demo/"
]
}