forked from airbnb/rheostat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.37 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
{
"name": "rheostat",
"version": "2.1.0",
"description": "Rheostat is a www, mobile, and accessible slider component built with React",
"main": "lib/Slider.js",
"jsnext:main": "src/Slider.jsx",
"scripts": {
"build": "npm run clean && babel src -d lib",
"clean": "rimraf lib",
"prepublish": "npm run build",
"lint": "eslint --ext .js,.jsx src test stories",
"storybook": "start-storybook -p 9001",
"pretest": "npm run build && npm run lint",
"test": "nyc npm run test:all",
"tests-only": "npm run build && npm run test:all",
"test:all": "npm run test:node && npm run test:dom",
"test:node": "npm run test:mocha",
"test:dom": "WITH_DOM=1 npm run test:mocha -- --require './test/.dom.js'",
"test:mocha": "npm run mocha 'test/**/*-test.*'",
"mocha": "mocha -R tap --compilers js:babel-register",
"react:clean": "rimraf node_modules/react node_modules/react-dom node_modules/react-addons-test-utils",
"react:13": "npm run react:clean && npm i react@0.13",
"react:14": "npm run react:clean && npm i react@0.14 react-dom@0.14 react-addons-test-utils@0.14",
"react:15": "npm run react:clean && npm i react@15 react-dom@15 react-addons-test-utils@15"
},
"repository": {
"type": "git",
"url": "git@github.com:airbnb/rheostat.git"
},
"author": "Josh Perez <josh.perez@airbnb.com>",
"license": "MIT",
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-transform-replace-object-assign": "^0.2.1",
"babel-preset-airbnb": "^2.2.3",
"babel-register": "^6.24.1",
"casual": "^1.5.12",
"chai": "^4.0.1",
"chai-enzyme": "^0.7.1",
"create-react-class": "^15.5.3",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"has": "^1.0.1",
"jsdom": "^9.12.0",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"sinon": "^2.3.2",
"style-loader": "^0.17.0"
},
"peerDependencies": {
"react": ">=0.13.x"
},
"dependencies": {
"object.assign": "^4.0.4",
"prop-types": "^15.5.10"
}
}