-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 728 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
{
"name": "vue-components",
"version": "0.0.0",
"description": "VUE components for JSCAD",
"repository": "https://github.com/jscad/OpenJSCAD.org/",
"main": "src/index.js",
"scripts": {
"build": "browserify src/index.js -g uglifyify -o dist/jscad-vue-components.js --standalone jscadVueComponents",
"coverage": "nyc --all --reporter=html --reporter=text npm test",
"test": "ava --verbose --timeout 2m 'tests/**/*.test.js'"
},
"keywords": [
"jscad",
"vue"
],
"license": "MIT",
"dependencies": {
"@jscad/regl-renderer": "2.3.0",
"@jscad/core": "2.3.6"
},
"devDependencies": {
"ava": "3.10.0",
"nyc": "15.1.0",
"browserify": "16.5.1",
"uglifyify": "5.0.2"
}
}