-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "react-browserify-boilerplate",
"version": "0.2.3",
"description": "A React browserify boilerplate. Test your component quickly and continuously with Karma.",
"scripts": {
"start": "browserify ./assets/client.js -t reactify -o ./public/client.js",
"test": "karma start karma.conf.js",
"test:watch": "karma start karma.conf.js --no-single-run"
},
"keywords": [
"facebook",
"react",
"react-component",
"boilerplate",
"karma",
"mocha"
],
"repository": {
"type": "git",
"url": "https://github.com/TYRONEMICHAEL/react-browserify-boilerplate.git"
},
"author": "Tyrone Michael Avnit <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TYRONEMICHAEL/react-browserify-boilerplate/issues"
},
"homepage": "https://github.com/TYRONEMICHAEL/react-browserify-boilerplate",
"devDependencies": {
"browserify": "^9.0.3",
"chai": "^1.9.1",
"karma": "^0.12.21",
"karma-bro": "^0.6.2",
"karma-chrome-launcher": "^0.1.4",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.7",
"mocha": "^1.21.4",
"react-tools": "^0.11.1",
"reactify": "^0.14.0"
},
"dependencies": {
"jquery": "^2.1.1",
"react": "^0.11.1"
}
}