forked from jscad/OpenJSCAD.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@jscad/openjscad",
"version": "2.0.0",
"description": "",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org",
"scripts": {
"docs": "jsdoc --configure jsdoc.json",
"coverage": "lerna run --concurrency 1 --stream coverage",
"test": "lerna run --stream test",
"test:tsd": "lerna run test:tsd",
"lint": "standardx 'packages/**/*.js'",
"changed": "lerna changed",
"graph": "lerna list --graph",
"list": "lerna ls",
"web": "cd ./packages/web && pnpm run dev",
"preversion": "pnpm run test && pnpm run test:tsd && pnpm run docs",
"publish": "lerna publish premajor --include-merged-tags --no-private --no-push --conventional-prerelease --dist-tag alpha --pre-dist-tag alpha",
"publish-dryrun": "lerna version premajor --include-merged-tags --no-push --conventional-prerelease"
},
"contributors": [
{
"name": "Rene K. Mueller",
"url": "http://renekmueller.com"
},
{
"name": "z3dev",
"url": "http://www.z3d.jp"
},
{
"name": "Mark 'kaosat-dev' Moissette",
"url": "http://kaosat.net"
}
],
"license": "MIT",
"devDependencies": {
"@jscad/sample-files": "github:jscad/sample-files#master",
"@lerna-lite/changed": "^2.5.1",
"@lerna-lite/cli": "^2.5.1",
"@lerna-lite/publish": "^2.5.1",
"@lerna-lite/run": "^2.5.1",
"@lerna-lite/version": "^2.5.1",
"ava": "4.3.3",
"docdash": "2.0.1",
"jsdoc": "4.0.2",
"c8": "8.0.0",
"standardx": "7.0.0",
"tsd": "^0.28.1"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/openjscad",
"logo": "https://opencollective.com/openjscad/logo.txt"
},
"standardx": {
"ignore": [
"**/dist/",
"**/old/",
"**/ui/csg-viewer",
"**/io/scad-deserializer",
"**/io/gcode-deserializer"
],
"env": {
"browser": true,
"node": true
}
},
"eslintConfig": {
"rules": {
"func-style": [
"error",
"expression"
],
"arrow-body-style": [
"error",
"as-needed"
],
"arrow-parens": [
"error",
"always"
],
"arrow-spacing": "error",
"prefer-arrow-callback": "error",
"import/no-default-export": "error",
"no-var": "error"
}
}
}