-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "@usco/stl-parser",
"description": "Fast and efficient stl format parser",
"keywords": [
"parser",
"stream",
"stl",
"3d"
],
"version": "2.1.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/usco/usco-stl-parser.git"
},
"main": "dist/index.js",
"module": "src/index.js",
"dependencies": {
"combining": "^0.1.1",
"composite-detect": "0.0.3",
"through2": "^2.0.1",
"webworkify": "^1.4.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1"
},
"scripts": {
"test": "ava './test/**/*.test.js' --verbose",
"build": "babel src/ -d dist",
"release": "npm run release-patch",
"release-patch": "git checkout master; npm run build && npm version patch && npm run build; git commit -a -m 'chore(dist): built dist/'; git push origin master --tags ",
"release-minor": "git checkout master; npm run build && npm version minor && npm run build; git commit -a -m 'chore(dist): built dist/'; git push origin master --tags ",
"release-major": "git checkout master; npm run build && npm version major && npm run build; git commit -a -m 'chore(dist): built dist/'; git push origin master --tags "
},
"ava": {
"require": [
"babel-register"
]
}
}