-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1003 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "tscover",
"version": "0.0.4",
"description": "Code covrage for TypeScript",
"bin": {
"tscover": "bin/tscover.js"
},
"files": [
"bin/",
"build/"
],
"directories": {
"test": "tests"
},
"types": "build/tscover.d.ts",
"scripts": {
"test": "mocha -u tdd",
"prebuild": "rm -rf ./build",
"build": "./build.sh",
"dev_build": "./build.sh --debug --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/durad/tscover.git"
},
"keywords": [
"code",
"coverage",
"typescript",
"ts"
],
"author": "Dusan Radovanovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/durad/tscover/issues"
},
"homepage": "https://github.com/durad/tscover#readme",
"devDependencies": {
"less": "^2.7.2",
"less-plugin-clean-css": "^1.5.1",
"typescript": "^2.3.2",
"uglify-js": "^3.0.4"
},
"dependencies": {
"global-modules": "^0.2.3"
}
}