-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.18 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
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
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "calqulus-steps",
"version": "1.4.3",
"description": "Processing steps for Calqulus - Qualisys online processing engine.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": {
"type": "git",
"url": "https://github.com/qualisys/Calqulus"
},
"homepage": "https://github.com/qualisys/Calqulus#readme",
"keywords": [],
"license": "GPL-3.0-or-later",
"scripts": {
"build": "node bin/build-metadata.js && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"watch:build": "node bin/build-metadata.js && tsc -p tsconfig.dev.json -w",
"watch:build:module": "node bin/build-metadata.js && tsc -p tsconfig.module.json -w",
"watch:test": "nyc --silent ava --watch",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:unit": "nyc --silent ava",
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:lcov": "nyc report --reporter=lcov",
"cov:send": "run-s cov:lcov && codecov",
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:steps": "node bin/build-step-docs",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --json build/docs/typedoc.json",
"ci-test": "run-s ci-test:*",
"ci-test:lint": "eslint src --ext .ts --format junit --output-file test-results/eslint.xml",
"ci-test:unit": "nyc --silent ava --tap | tap-xunit > test-results/unit.xml"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@typescript-eslint/parser": "^5.27.0",
"base-64": "^1.0.0",
"cubic-spline": "^3.0.3",
"expression-engine": "^1.8.1",
"fili": "^2.0.3",
"js-quantities": "^1.7.6",
"lodash": "^4.17.20",
"yaml": "^2.0.0-8"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/js-quantities": "^1.6.2",
"@types/lodash-es": "^4.17.3",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.27.0",
"ava": "^4.0.1",
"codecov": "^3.5.0",
"cspell": "^4.1.0",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open-cli": "^7.1.0",
"remove-markdown": "^0.3.0",
"sinon": "^17.0.1",
"tap-xunit": "^2.4.1",
"ts-node": "^9.0.0",
"typedoc": "^0.22.15",
"typescript": "^4.0.8"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "build/main/"
}
},
"files": [
"!build/module/**",
"!src/tests/**"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}