-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.27 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-component-boilerplate",
"version": "0.2.3",
"description": "A React component boilerplate. Test your component quickly and continuously with Karma.",
"scripts": {
"start": "./node_modules/react-tools/bin/jsx src/ build/",
"test": "./node_modules/karma/bin/karma start karma.conf.js",
"test:watch": "./node_modules/karma/bin/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-component-boilerplate.git"
},
"author": "Tyrone Michael Avnit <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TYRONEMICHAEL/react-component-boilerplate/issues"
},
"homepage": "https://github.com/TYRONEMICHAEL/react-component-boilerplate",
"devDependencies": {
"browserify": "^5.9.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"
}
}