forked from CIDARLAB/3DuF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.59 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
{
"name": "3duf",
"devDependencies": {
"mocha": ">=2.2.5",
"babel": ">=5.5.5",
"browserify": ">=10.2.4",
"babelify": ">=6.1.2",
"require-directory": ">=2.1.1",
"watchify": ">=3.2.2",
"istanbul": ">=0.3.17",
"should": ">=7.0.2",
"sinon": ">=1.15.4"
},
"dependencies": {
"jszip": "^2.5.0",
"node-uuid": ">=1.4.3"
},
"version": "0.1.0",
"description": "User-friendly CAD tool for designing microfluidic devices.",
"main": "3DuFApp.js",
"scripts": {
"compile_orbit": "node_modules/.bin/browserify ./src/app/renderer/orbit_demo.js -t babelify --outfile ./orbit_bundle.js",
"compile": "node_modules/.bin/browserify ./src/app/appSetup.js -t babelify --outfile ./3DuFapp.js",
"test": "node_modules/.bin/mocha --recursive --compilers js:babel/register -R spec ./src/test/",
"prepublish": "npm run compile",
"watch_compile": "node_modules/.bin/watchify ./src/app/appSetup.js -t babelify -v --outfile ./3DuFapp.js",
"watch_test": "node_modules/.bin/mocha --watch --recursive --compilers js:babel/register -R min ./src/test/",
"cover": "node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- -R spec --recursive --compilers js:babel/register ./src/test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nesciosquid/3DuF.git"
},
"keywords": [
"microfluidics",
"CAD",
"webapp",
"design",
"rendering"
],
"author": "Aaron W. Heuckroth",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nesciosquid/3DuF/issues"
},
"homepage": "https://github.com/Nesciosquid/3DuF#readme"
}