forked from sghall/react-compound-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·108 lines (108 loc) · 3.34 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
104
105
106
107
108
{
"name": "react-compound-slider",
"version": "0.16.3",
"description": "Futuristic react slider component",
"keywords": [
"react",
"react-component",
"range-slider",
"input-range",
"range",
"slider",
"form",
"input"
],
"repository": {
"type": "git",
"url": "https://github.com/sghall/react-compound-slider.git"
},
"main": "./index.js",
"author": "Steven Hall",
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"d3-array": "^1.2.4",
"prop-types": "^15.6.2",
"warning": "^3.0.0"
},
"devDependencies": {
"app-module-path": "^2.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.20",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-kentcdodds": "^12.4.3",
"eslint-plugin-prettier": "^2.7.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.3",
"gzip-size": "^4.1.0",
"husky": "^0.14.3",
"jsdom": "11.11.0",
"lint-staged": "^7.3.0",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"nyc": "^11.9.0",
"prettier-eslint-cli": "^4.7.1",
"pretty-bytes": "^4.0.2",
"react": "^16.6.3",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"recursive-readdir-sync": "^1.0.6",
"rimraf": "^2.6.2",
"rollup": "^0.56.5",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "^4.5.0"
},
"scripts": {
"docs": "cd docs && npm install && npm run start",
"prebuild": "npm run build:cln",
"build": "npm run build:lib && npm run build:cpy",
"build:cln": "rimraf build",
"build:lib": "node ./scripts/build.js",
"build:cpy": "babel-node ./scripts/copy-files.js",
"lint": "eslint --fix src docs/src test --quiet --cache && echo \"eslint: no lint errors\"",
"test": "cross-env NODE_ENV=test BABEL_ENV=cjs mocha \"src/**/*.spec.js\"",
"test:watch": "npm run test -- -w",
"test:coverage": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha \"src/**/*.spec.js\" && nyc report --reporter=lcov",
"test:coverage:html": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha \"src/**/*.spec.js\" && nyc report --reporter=html",
"pretty": "prettier-eslint src/**/*.js --write --no-semi --single-quote --trailing-comma=all --print-width 80",
"pretty-docs": "prettier-eslint docs/src/**/*.js --write --no-semi --single-quote --trailing-comma=all --print-width 80",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write --no-semi --single-quote --trailing-comma=all --print-width 80",
"git add"
]
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js"
],
"sourceMap": false,
"instrument": false
}
}