-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
{
"name": "@digicatapult/dtdl-parser",
"version": "0.0.69",
"description": "JS tool to parse DTDL defined Ontologies",
"main": "build/index.js",
"type": "module",
"exports": {
"import": "./build/index.js"
},
"types": "./build/index.d.ts",
"files": [
"build/",
"types/"
],
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --config ./test/mocharc.json ./src/**/*.test.ts",
"test:integration": "npm run build && NODE_ENV=test ./node_modules/.bin/mocha --config ./test/integration/mocharc.json ./test/**/*.test.js",
"build": "npm run build:ts && npm run interop:build && npm run build:declarations",
"build:declarations": "tsc --emitDeclarationOnly",
"interop:debug": "dotnet build interop",
"interop:build": "dotnet build src/interop --configuration Release",
"build:ts": "swc ./src -d ./build --strip-leading-paths",
"check": "tsc --noEmit",
"clean": "rimraf -rf ./build",
"lint": "eslint .",
"depcheck": "depcheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/dtdl-parser.git"
},
"keywords": [
"dtdl",
"digital",
"twins",
"parsing",
"tool"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/dtdl-parser/issues"
},
"homepage": "https://github.com/digicatapult/dtdl-parser#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@swc-node/register": "^1.10.9",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.12",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"chai": "^5.1.2",
"depcheck": "^1.4.7",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"mocha": "^11.1.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">= 20"
}
}