This repository was archived by the owner on Jun 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.97 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
{
"dependencies": {
"@types/cytoscape": "^3.19.9",
"@types/sinon": "^10.0.13",
"ajv": "^8.11.2",
"cytoscape": "^3.23.0",
"cytoscape-avsdf": "^1.0.0",
"cytoscape-dagre": "^2.5.0",
"cytosnap": "^3.1.0",
"readline-sync": "^1.4.10",
"yargs": "^17.6.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/readline-sync": "^1.4.4",
"@types/yargs": "^17.0.13",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"sinon": "^14.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"scripts": {
"build": "tsc",
"start": "tsc && node build/script.js fromfile --template input/demo-1-template.json --as input/demo-1-as.json --output ./output",
"demo:1": "tsc && node build/script.js fromfile --template input/demo-1-template.json --as input/demo-1-as.json --output ./output",
"demo:2": "tsc && node build/script.js fromfile --template input/demo-2-template.json --as input/demo-2-as.json --output ./output",
"demo:3": "tsc && node build/script.js fromfile --template input/demo-3-template.json --as input/demo-3-as.json --output ./output",
"test": "mocha --require ts-node/register --watch-extensions ts 'test/**/*.ts'",
"test:coverage": "nyc npm run test"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"include": [
"src/parser.ts",
"src/expressions.ts",
"src/schema-validators.ts",
"src/renderer.ts"
],
"exclude": [
"src/_tests_/**/*.*"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}