forked from jacdevos/continuous-integration-kata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "karma-seed",
"version": "1.0.0",
"description": "A seed project for using the Karma test framework",
"main": "index.js",
"scripts": {
"test": "karma start karma.conf.js",
"full-test": "NODE_ENV=test karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bbraithwaite/karma-seed"
},
"keywords": [
"karma",
"seed",
"project"
],
"author": "https://github.com/bbraithwaite",
"license": "ISC",
"bugs": {
"url": "https://github.com/bbraithwaite/karma-seed/issues"
},
"homepage": "https://github.com/bbraithwaite/karma-seed",
"devDependencies": {
"chai": "2.1.0",
"get-stdin": "4.0.1",
"istanbul": "0.3.6",
"jshint": "2.6.0",
"karma": "0.12.31",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.1.7",
"karma-cli": "0.0.4",
"karma-coverage": "0.2.7",
"karma-firefox-launcher": "^1.0.1",
"karma-fixture": "0.2.1-1",
"karma-html2js-preprocessor": "0.1.0",
"karma-mocha": "0.1.10",
"karma-phantomjs-launcher": "0.1.4",
"mocha": "2.1.0"
}
}