This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
79 lines (79 loc) · 2.45 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
72
73
74
75
76
77
78
79
{
"name": "cura-wasm",
"version": "1.5.2",
"description": "Cura Engine powered by Web Assembly (WASM)",
"main": "dist/cjs.js",
"module": "dist/es.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist",
"src"
],
"browserslist": "> 0.25%, not dead",
"scripts": {
"benchmark": "node assets/benchmark.js",
"build": "rollup -c",
"chart": "node assets/chart.js",
"coverage": "npm run test:node && npm run test:browser:cli && nyc report --reporter=lcov",
"demo": "nollup -c demo/rollup.config.js --content-base demo",
"lint": "eslint .",
"test:browser:cli": "concurrently --kill-others --success first \"npm:demo\" \"wait-on http-get://127.0.0.1:8080 && cypress run\"",
"test:browser:gui": "concurrently --kill-others --success first \"npm:demo\" \"wait-on http-get://127.0.0.1:8080 && cypress open\"",
"test:node": "npm run build && nyc --reporter=lcov mocha --colors --exit --timeout 60000 tests/node/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cloud-CNC/cura-wasm.git"
},
"keywords": [
"gcode",
"gcode-slicer",
"cura",
"cura-engine",
"cloud-cnc"
],
"author": "Cloud CNC",
"license": "(MIT AND LGPL-3.0-or-later AND AGPL-3.0-or-later)",
"bugs": {
"url": "https://github.com/Cloud-CNC/cura-wasm/issues"
},
"homepage": "https://github.com/Cloud-CNC/cura-wasm#readme",
"dependencies": {
"observable-fns": "^0.5.1",
"threads": "^1.6.3",
"unified-3d-loader": "^1.1.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^5.0.2",
"@types/emscripten": "^1.39.4",
"@types/events": "^3.0.0",
"@types/node": "^14.11.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"cura-wasm-definitions": "^1.5.0",
"cypress": "^4.12.1",
"eslint": "^7.11.0",
"events": "^3.2.0",
"lodash": "^4.17.20",
"mocha": "^8.1.3",
"nollup": "^0.12.3",
"normalize-name": "^1.0.1",
"nyc": "^15.1.0",
"quickchart-js": "^1.0.5",
"rollup": "^2.30.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-threads": "^1.0.0",
"rollup-plugin-typescript2": "^0.27.3",
"typescript": "^3.9.7",
"wait-on": "^5.2.0"
}
}