-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 1.75 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
{
"name": "@jsxcad/core",
"version": "1.0.0",
"description": "Javascript CAD",
"repository": "https://github.com/jsxcad/JSxCAD",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"depcheck": "lerna run depcheck",
"lint": "lerna run lint",
"lintfix": "lerna run lintfix",
"prettier": "prettier --write .",
"publish-npm": "lerna publish",
"rollup": "lerna run rollup",
"doc": "node doc/update.js",
"cli": "node cli/cli.js",
"test": "lerna run tests --stream --concurrency=1",
"tests": "lerna run tests --stream --concurrency=1 --loglevel=silly"
},
"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": [],
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.22.5",
"@lerna/legacy-package-management": "^7.3.0",
"ava": "^4.3.0",
"eslint": "^8.43.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsdoc": "^46.4.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.0",
"lerna": "^6.4.1",
"prettier": "^2.3.1"
},
"publishConfig": {
"access": "restricted"
}
}