-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.31 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "timeline-view",
"version": "0.0.6",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "tsc",
"test": "nyc mocha",
"watch": "mocha-typescript-watch",
"prepare": "tsc",
"log1": "node timeline.js < samples/log1.txt && open times.html"
},
"bin": "timeline.js",
"repository": {
"type": "git",
"url": "git+https://github.com/PanayotCankov/timeline-view.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PanayotCankov/timeline-view/issues"
},
"homepage": "https://github.com/PanayotCankov/timeline-view#readme",
"devDependencies": {
"typescript": "^2.3.4",
"@types/node": "^7.0.27",
"@types/chai": "*",
"@types/mocha": "*",
"chai": "*",
"mocha": "*",
"mocha-typescript": "*",
"nyc": "*",
"source-map-support": "*"
},
"files": [
"index.html",
"index.js",
"index.d.ts",
"lib.js",
"lib.d.ts",
"LICENSE",
"sample-data.js",
"style.css",
"chart.js",
"timeline.js"
],
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"lib.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}