-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "@design-core/core",
"version": "50.1.0",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0"
},
"description": "2D CAD Library",
"exports": {
".": "./core/core/core.js",
"./designCore.js": "./core/designCore.js",
"./property.js": "./core/properties/property.js",
"./canvasRenderer.js": "./core/lib/renderers/canvasRenderer.js"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dubstar-04/Design-Core.git"
},
"keywords": [
"CAD"
],
"author": "Daniel Wood",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/dubstar-04/Design-Core/issues"
},
"homepage": "https://github.com/dubstar-04/Design-Core#readme"
}