-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.89 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 1.89 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "graph-visualizer",
"version": "0.10.12",
"description": "discover nodes and edges in a flexible way",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "webpack-dev-server --open",
"watch": "webpack --watch",
"build": "webpack",
"test": "tsa ci",
"prepare": "husky install",
"prepublishOnly": "tsa clean && npm -s run dist",
"assist": "tsa assist",
"release": "tsa release",
"fix": "tsa fix",
"fixall": "tsa fixall",
"clean": "tsa clean",
"dist": "tsc -p ./src/tsconfig.json && tsc -p src -m commonjs --outDir dist/cjs",
"ci": "tsa ci",
"coverage-show": "open-cli build/coverage/index.html"
},
"keywords": [
"graph",
"visualize"
],
"author": "",
"license": "MIT",
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"cache": true,
"temp-directory": "./build/nyc/cache",
"all": false,
"check-coverage": true,
"report-dir": "./build/coverage",
"es-module": false,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"watermarks": {
"lines": [
75,
100
],
"functions": [
75,
100
],
"branches": [
75,
100
],
"statements": [
75,
100
]
}
},
"dependencies": {
"maquette": "3.5.2"
},
"devDependencies": {
"css-loader": "6.7.1",
"html-webpack-plugin": "5.5.0",
"koa": "2.13.4",
"koa-static": "5.0.0",
"ts-loader": "9.3.0",
"typescript-assistant": "^0.56.6",
"webpack": "5.73.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.1"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}