-
Notifications
You must be signed in to change notification settings - Fork 558
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.57 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.57 KB
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
{
"name": "@jscad/modeling",
"version": "2.13.0",
"description": "Constructive Solid Geometry (CSG) Library for JSCAD",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org",
"main": "src/index.js",
"types": "src/index.d.ts",
"unpkg": "dist/jscad-modeling.min.js",
"scripts": {
"build": "browserify src/index.js -o dist/jscad-modeling.min.js -g uglifyify --standalone jscadModeling",
"coverage": "nyc --all --reporter=html --reporter=text npm test",
"test": "ava 'src/**/*.test.js' --verbose --timeout 2m",
"test:tsd": "tsd",
"version": "npm run build && git add dist"
},
"contributors": [
{
"name": "Alexandre Girard",
"url": "https://github.com/alx"
},
{
"name": "Evan Wallace",
"url": "http://evanw.github.com/csg.js/"
},
{
"name": "Joost Nieuwenhuijse",
"email": "[email protected]"
},
{
"name": "Eduard Bespalov",
"url": "http://evanw.github.com/csg.js/"
},
{
"name": "bebbi",
"email": "[email protected]"
},
{
"name": "Spiritdude Rene K Mueller",
"url": "http://renekmueller.com"
},
{
"name": "Jeff Gay",
"url": "http://www.z3d.jp"
}
],
"keywords": [
"csg",
"parametric",
"modeling",
"openjscad",
"jscad"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"ava": "3.15.0",
"browserify": "16.5.1",
"nyc": "15.1.0",
"uglifyify": "5.0.2"
},
"gitHead": "a90b9bad95a417661c619dc733e62c587dc71a4a"
}