-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "@gnodi/testing",
"description": "Hard test your universal (client and server) JavaScript code and show it!",
"version": "0.0.0",
"author": "Thomas Prelot <[email protected]> (https://github.com/Gnucki)",
"contributors": [],
"keywords": [
"gnodi",
"lib",
"testing"
],
"dependencies": {},
"devDependencies": {
"@gnodi/eslint-config": "^0.1.0",
"istanbul": "^0.4.0",
"jasmine": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha": "^1.2.0",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-webpack": "^1.8.0",
"webpack": "^2.1.0-beta.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gnodi/testing"
},
"main": "index",
"scripts": {
"lint": "gnodi-lint",
"test": "NODE_ENV='test' istanbul cover jasmine test/**/*.js",
"test-client": "karma start"
},
"bin": {},
"engines": {
"node": ">=6",
"npm": ">=3"
}
}