forked from leviat-tech/jsdraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"name": "@crhio/jsdraft",
"version": "0.0.40",
"description": "A functional toolkit for drawing and flexing 2D parametric drawings",
"bin": "src/cli.js",
"scripts": {
"render": "./src/cli.js",
"build": "rollup --config",
"build-app": "rollup --config && npm install --prefix ./app && npm run build --prefix ./app",
"build-electron-app": "rollup --config && npm run electron-build --prefix ./app",
"build:watch": "chokidar \"src/**/*.js\" --initial -c \"rollup --config\"",
"test": "mocha \"./test/**/*.spec.js\"",
"test:watch": "mocha \"./test/**/*.spec.js\" --reporter min --colors -w --watch-ignore node_modules,.git,app"
},
"author": "CRH Technology Studio",
"main": "src/index.js",
"module": "dist/jsdraft.esm.js",
"browser": {
"./src/loaders/load-draft.js": "./src/loaders/load-draft.browser.js",
"./src/loaders/load-file.js": "./src/loaders/load-file.browser.js"
},
"dependencies": {
"@crhio/offset": "^0.0.13",
"@crhio/vector": "0.0.4",
"@flatten-js/core": "^1.2.23",
"commander": "^7.1.0",
"dxf-writer": "1.7.0",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21",
"rbush": "^3.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"chai": "^4.3.0",
"chokidar-cli": "^2.1.0",
"dxf-parser": "^1.0.0-alpha.2",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.6.0",
"mocha": "^8.3.0",
"rollup": "^2.40.0",
"svg-parser": "^2.0.4"
},
"files": [
"dist",
"src"
],
"bugs": {
"url": "https://github.com/leviat-tech/jsdraft/issues"
},
"homepage": "https://github.com/leviat-tech/jsdraft#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leviat-tech/jsdraft.git"
}
}