forked from eclipse-esmf/esmf-sdk-js-aspect-model-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "@esmf/aspect-model-loader",
"version": "3.0.0",
"description": "Instantiate and traverse defined Aspect Models natively in your TypeScript applications",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.json",
"prettier": "prettier --config .prettierrc --write './src/**/*{.ts,.js,.json}'",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest --reporters default jest-stare",
"test:prettier": "prettier --config .prettierrc --list-different './src/**/*{.ts,.js,.json}'",
"test:coverage": "jest --coverage --reporters default jest-stare",
"all": "npm run build && npm run prettier && npm run lint && npm test"
},
"files": [
"dist/**"
],
"keywords": [
"DTS",
"Digital Twin System",
"Twin",
"Digital Twin",
"Aspect Meta Model",
"SAMM"
],
"author": "",
"license": "mpl-2.0",
"engines": {
"node": ">=12.18.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/n3": "1.16.4",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"babel-jest": "^29.6.2",
"copyfiles": "2.4.1",
"create-ts-index": "1.14.0",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"jest-stare": "^2.5.0",
"npm-snapshot": "1.1.1",
"nyc": "15.1.0",
"prettier": "^2.8.8",
"rimraf": "5.0.5",
"source-map-support": "0.5.21",
"ts-loader": "9.5.0",
"ts-node": "10.9.1",
"typescript": "5.1.6"
},
"dependencies": {
"buffer": "^6.0.3",
"locale-codes": "1.3.1",
"n3": "1.17.2",
"rxjs": "7.x",
"tslib": "2.6.2",
"util": "0.12.5"
}
}