-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 808 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 808 Bytes
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
{
"name": "@duet3d/objectmodel",
"version": "3.5.0-beta.30",
"description": "TypeScript implementation of the Duet3D Object Model",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Duet3D/ObjectModel.git"
},
"author": "Christian Hammacher",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/Duet3D/ObjectModel/issues"
},
"homepage": "https://github.com/Duet3D/ObjectModel#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"files": [
"/dist"
]
}