-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
72 lines (72 loc) · 2 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
{
"name": "@jscad/csg",
"version": "0.7.0",
"description": "Constructive Solid Geometry (CSG) Library",
"repository": "https://github.com/jscad/csg.js",
"main": "csg.js",
"scripts": {
"build-docs": "./node_modules/.bin/jsdoc -c jsdoc.json",
"docs": "jsdoc2md --files src/**/*.js > docs/api.md",
"test-api": "nyc ava ./src/**/*.test.js --concurrency 3 --verbose --timeout 40000",
"test-core": "nyc ava ./test --concurrency 3 --verbose --timeout 40000",
"test": "npm run test-core && npm run test-api",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"preversion": "npm test",
"version": "npm run changelog && npm run docs && git add -A ",
"postversion": "git push origin master && git push origin master --tags",
"release-patch": "git checkout master && git pull origin master && npm version patch",
"release-minor": "git checkout master && git pull origin master && npm version minor",
"release-major": "git checkout master && git pull origin master && npm version major"
},
"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",
"dependencies": {},
"devDependencies": {
"ava": "^0.23.0",
"conventional-changelog-cli": "^1.3.4",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^3.0.0",
"nyc": "^10.3.2"
},
"ava": {
"require": [
"babel-register"
]
}
}