-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.13 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
{
"name": "glView-helpers",
"version": "0.2.0",
"description": "glView-helpers ",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/usco/glView-helpers.git"
},
"author": "Mark 'kaosat-dev' Moissette",
"license": "MIT",
"bugs": {
"url": "https://github.com/usco/glView-helpers/issues"
},
"homepage": "https://github.com/usco/glView-helpers",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1"
},
"scripts": {
"browserify": "browserify src/index.js -t babelify -t --standalone glView-helpers --exclude three --outfile lib/glView-helpers.js",
"build": "babel src --out-dir lib",
"release": "npm run release-patch",
"release-patch": "git checkout master ; npm version patch && git push origin master --tags ",
"release-minor": "git checkout master ; npm version minor && git push origin master --tags ",
"release-major": "git checkout master ; npm version major && git push origin master --tags "
},
"dependencies": {
"fast.js": "^0.1.1"
}
}