-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 1.54 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
{
"name": "react-accessible-tabs",
"version": "0.3.3",
"description": "Accessible React tabs component",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && npm clean-demo",
"start": "nwb serve-react-demo",
"test": "mocha tools/testSetup.js \"src/**/*.spec.js\" --reporter progress",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run test && npm run build"
},
"dependencies": {
"classnames": "^2.2.5",
"react-addons-create-fragment": "^15.5.4"
},
"peerDependencies": {
"prop-types": "15.x",
"react": "15.x"
},
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"enzyme": "^2.8.2",
"expect": "^1.20.2",
"mocha": "^3.4.2",
"nwb": "0.12.x",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4"
},
"author": "Matt Stow",
"homepage": "http://mattstow.com",
"license": "MIT",
"repository": "https://github.com/stowball/react-accessible-tabs.git",
"keywords": [
"react",
"react-component",
"ui",
"accessible",
"a11y",
"tabs",
"es6"
],
"babel": {
"env": {
"test": {
"presets": [
"es2015",
"react",
"stage-0"
]
}
}
}
}