forked from jscad/io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@jscad/io",
"private": "true",
"version": "0.1.0",
"description": "Input , output and formats handling for jscad project",
"repository": "https://github.com/jscad/io",
"scripts": {
"test": "lerna bootstrap && lerna run test",
"lint": "eslint packages/**/*.js",
"publish": "git checkout master && git pull origin master && npm t && lerna publish --conventional-commits",
"publish-dryrun": "git checkout master && git pull origin master && npm t && lerna publish --conventional-commits --skip-git --skip-npm"
},
"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"
}
],
"keywords": [
"openscad",
"openjscad",
"jscad",
"parametric",
"modeling",
"cad",
"io",
"formats",
"parser",
"writer",
"serializer",
"deserializer"
],
"license": "MIT",
"devDependencies": {
"@jscad/sample-files": "github:jscad/sample-files",
"ava": "^0.22.0",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"lerna": "2.1.2"
},
"eslintConfig": {
"extends": "standard"
}
}