-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 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
{
"name": "@meadow/react-slider",
"version": "2.0.0-alpha.2",
"description": "Clean and simple Slider component. For when <input type=\"range\" /> just won't do.",
"main": "lib/components/Slider.js",
"scripts": {
"prepublish": "npm run build",
"postpublish": "npm run clean",
"build": "mkdirp lib/styles && stylus styles --out lib/styles && mkdirp lib/components && babel components --out-dir lib/components",
"clean": "trash lib",
"test": "zuul -- test/**/*.{js,jsx}",
"test:browser": "zuul --local 55555 -- test/**/*.{js,jsx}",
"lint": "eslint components --ext .js --ext .jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meadow/react-slider.git"
},
"keywords": [
"react",
"react-component",
"component",
"slider",
"range",
"input",
"meadow"
],
"author": "Timothy Kempf <tim@getmeadow.com> (https://getmeadow.com)",
"license": null,
"bugs": {
"url": "https://github.com/meadow/react-slider/issues"
},
"homepage": "https://github.com/meadow/react-slider#readme",
"devDependencies": {
"@fauntleroy/trigger-event": "^1.0.1",
"@meadow/eslint-config": "^1.1.0",
"babel-cli": "6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babelify": "7.3.0",
"browserify": "14.4.0",
"dom-classes": "0.0.1",
"eslint": "4.5.0",
"mkdirp": "^0.5.1",
"react": "15.6.1",
"react-dom": "^15.6.1",
"simple-mock": "^0.3.1",
"stylus": "^0.52.4",
"tape": "4.8.0",
"trash": "^2.0.0",
"watchify": "3.9.0",
"zuul": "3.11.0"
},
"peerDependencies": {
"react": ">=0.13.0"
},
"dependencies": {
"classnames": "^2.2.1"
}
}