Last active
January 15, 2017 07:35
-
-
Save kaosat-dev/3be555f72645a7bf55a1fb5ee789e7d0 to your computer and use it in GitHub Desktop.
Needed changes csg pkg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "presets": [ | |
| "es2015" | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "csg.js", | |
| "version": "0.0.0", | |
| "description": "", | |
| "repository": "https://github.com/jscad/csg.js", | |
| "main": "csg.js", | |
| "scripts": { | |
| "test": "ava './src/**/*.test.js' --require babel-register --verbose --timeout 10000", | |
| "release-patch": "git checkout master; 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 version minor && npm run build; git commit -a -m 'chore(dist): built dist/'; git push origin master --tags ", | |
| "release-major": "git checkout master; npm version major && npm run build; git commit -a -m 'chore(dist): built dist/'; git push origin master --tags ", | |
| }, | |
| "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" | |
| } | |
| ], | |
| "license": "MIT", | |
| "dependencies": {}, | |
| "devDependencies": { | |
| "ava": "^0.15.2", | |
| "babel": "^6.5.2", | |
| "babel-cli": "^6.18.0", | |
| "babel-core": "^6.21.0", | |
| "babel-preset-es2015": "^6.18.0" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment