-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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
{
"name": "latch",
"description": "A testing language for constraint environments",
"version": "0.5.1",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.js"
},
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"bin"
],
"scripts": {
"clean": "rm -rf dist out tsconfig.build.tsbuildinfo",
"build": "tsc --project tsconfig.build.json",
"build:tests": "tsc --outDir out --project tsconfig.tests.json",
"watch": "tsc -watch -p ./",
"lint": "eslint src/**/* --config .eslint.config.mjs",
"test:prebuild": "npm run build && npm run build:tests",
"test:all": "npm run test:prebuild && npm run test:ava",
"test:ava": "ava",
"test:example": "npx ts-node ./tests/examples/example.ts",
"coverage:test:ava": "c8 --src src/ --all ava"
},
"dependencies": {
"@thi.ng/leb128": "^3.1.90",
"ansi-colors": "^4.1.3",
"ieee754": "^1.2.1",
"json-with-bigint": "^3.5.8",
"ora": "^9.4.0",
"source-map": "^0.7.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@ava/typescript": "^7.0.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.9.1",
"@types/uuid": "^11.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"ava": "^8.0.1",
"c8": "^11.0.0",
"convert-extension": "^0.3.0",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"mqtt": "^5.15.1",
"serialport": "^13.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1"
},
"ava": {
"files": [
"out/tests/unit/describers.test.js",
"out/tests/unit/messaging.test.js",
"out/tests/unit/parsing.test.js",
"out/tests/unit/sourcemap.test.js",
"out/tests/unit/util.test.js"
],
"typescript": {
"compile": false,
"rewritePaths": {
"src/": "dist/"
}
}
}
}