-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.15 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
47
48
49
50
51
52
{
"name": "testdeck-jasmine-seed",
"version": "0.0.0",
"private": true,
"description": "A project with mocha-typescript enabled",
"main": "index.js",
"scripts": {
"pretest": "tsc",
"test": "nyc jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testdeck/testdeck-jasmine-seed.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/testdeck/testdeck-jasmine-seed/issues"
},
"homepage": "https://www.testdeck.org",
"dependencies": {},
"devDependencies": {
"@testdeck/jasmine": "latest",
"@types/chai": "latest",
"@types/jasmine": "latest",
"chai": "latest",
"jasmine": "latest",
"jasmine-spec-reporter": "latest",
"nyc": "latest",
"source-map-support": "latest",
"typescript": "latest"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}