-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 964 Bytes
/
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
{
"name": "@gnodi/karma-gnodi",
"description": "Test your gnodi libs with karma!",
"version": "0.0.0",
"author": "Thomas Prelot <[email protected]> (https://github.com/Gnucki)",
"contributors": [],
"keywords": [
"gnodi",
"lib",
"karma-gnodi"
],
"dependencies": {},
"devDependencies": {
"@gnodi/eslint-config": "^0.2.0",
"coveralls": "^2.11.15",
"jasmine": "^2.5.2",
"nyc": "^10.1.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gnodi/karma-gnodi"
},
"main": "index",
"scripts": {
"check": "gnodi-lint && npm run test-coverage",
"lint": "gnodi-lint",
"test": "NODE_ENV='test' jasmine test.js index.js test/unit/ lib/",
"test-coverage": "nyc npm test && nyc report --reporter text-summary",
"test-coveralls": "nyc npm test && nyc report --reporter text-lcov | coveralls"
},
"bin": {},
"engines": {
"node": ">=6",
"npm": ">=3"
}
}