forked from codecov/example-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 845 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
{
"name": "example-typescript",
"version": "1.0.0",
"description": "Codecov Example Typescript",
"main": "index.js",
"devDependencies": {
"@types/mocha": "5.2.5",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"typescript": "^3.1.1"
},
"scripts": {
"pretest": "tsc -p .",
"test": "nyc mocha",
"posttest": "nyc report --reporter=json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codecov/example-typescript.git"
},
"keywords": [
"codecov",
"typescript",
"example",
"code",
"coverage"
],
"author": "Ed Moore <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codecov/example-typescript/issues"
},
"homepage": "https://github.com/codecov/example-typescript#readme"
}