-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "react-tabguard",
"description": "React Tabguard",
"version": "0.5.0",
"license": "MIT",
"main": "./",
"maintainers": [
{
"name": "Petr Brzek",
"email": "[email protected]"
}
],
"keywords": [
"react",
"react-component",
"tabguard"
],
"scripts": {
"prepublish": "coffee -o ./ src/",
"start": "webpack-dev-server --hot --progress --colors",
"test": "mocha && istanbul report text-summary lcov",
"fast-test": "mocha"
},
"peerDependencies": {
"react": "^0.14.8 || ^15 || ^16"
},
"repository": {
"type": "git",
"url": "git://github.com/avocode/react-tabguard.git",
"web": "http://github.com/avocode/react-tabguard"
},
"bugs": {
"url": "http://github.com/avocode/react-tabguard/issues"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-enzyme": "^0.4.1",
"cheerio": "^0.20.0",
"coffee-coverage": "^1.0.1",
"coffee-loader": "^0.7.0",
"coffee-script": "^1.9.3",
"enzyme": "^2.2.0",
"istanbul": "^0.4.2",
"jsdom": "^8.3.0",
"lodash": "^4.8.2",
"mocha": "^2.2.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-dom-factories": "^1.0.2",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"array-from": "^2.0.2",
"create-react-class": "^15.6.3",
"prop-types": "^15.7.2"
}
}