This repository has been archived by the owner on Nov 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 2.09 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
{
"name": "vue-gcode-viewer",
"version": "1.2.3",
"author": "Cloud CNC",
"scripts": {
"build": "vue-cli-service build --target lib --name vue-gcode-viewer src/main.js",
"coverage": "npm run test:unit && npm run test:e2e:cli && nyc report --reporter=lcov",
"lint": "vue-cli-service lint",
"serve": "vue-cli-service serve src/demo/main.js",
"test:e2e": "vue-cli-service test:e2e --url http://localhost:8080",
"test:e2e:cli": "concurrently --kill-others --success first \"npm:serve\" \"wait-on http-get://localhost:8080 && npm run test:e2e -- --headless\"",
"test:e2e:gui": "concurrently --kill-others --success first \"npm:serve\" \"wait-on http-get://localhost:8080 && npm run test:e2e\"",
"test:unit": "nyc --no-clean --silent vue-cli-service test:unit"
},
"main": "dist/vue-gcode-viewer.common.js",
"files": [
"dist/*",
"src/*"
],
"dependencies": {
"core-js": "^3.6.4",
"three": "^0.116.1",
"vue": "^2.6.12"
},
"devDependencies": {
"@cypress/code-coverage": "^3.8.1",
"@mdi/font": "^5.6.55",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-e2e-cypress": "^4.5.7",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-plugin-unit-mocha": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.1.2",
"concurrently": "^5.3.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"geckodriver": "^1.20.0",
"nyc": "^15.1.0",
"raw-loader": "^4.0.2",
"vue-cli-plugin-vuetify": "^2.0.7",
"vue-template-compiler": "^2.6.12",
"vuetify": "^2.3.13",
"wait-on": "^5.2.0"
},
"bugs": {
"url": "https://github.com/Cloud-CNC/vue-gcode-viewer/issues"
},
"homepage": "https://github.com/Cloud-CNC/vue-gcode-viewer#readme",
"keywords": [
"vue",
"gcode",
"gcode-viewer",
"vue-gcode-viewer",
"gcode-visualizer",
"gcode-parser",
"cloud-cnc"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Cloud-CNC/vue-gcode-viewer.git"
}
}