forked from ff6347/extendscript6-proof-of-concept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.21 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
{
"name": "extendscript6",
"version": "0.1.0",
"description": "compiling es6 to extendscript",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel": "#NOT USED./node_modules/.bin/babel src/ --presets es2015 -d tmp/",
"watchify": "./node_modules/.bin/watchify src/index.js -t babelify -v -o tmp/bundle.js",
"browserify": "./node_modules/.bin/browserify src/index.js -t babelify -v -o tmp/bundle.js",
"postbrowserify": "cat polyfills/Object.defineProperty.js > dist/index.js; cat node_modules/es5-shim/es5-shim.js >> dist/index.js; cat node_modules/es5-shim/es5-sham.js >> dist/index.js; cat tmp/bundle.js >> dist/index.js;"
},
"browserify": {
"transform": [
"commandify"
]
},
"commandify": " npm run postbrowserify",
"keywords": [
"extendscript",
"es6",
"es2015"
],
"author": "Fabian 'fabiantheblind' Morón Zirfas <fabian.moron.zirfas@gmail.com> (http://fabianmoronzirfas.me)",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"commandify": "^0.1.2",
"es5-shim": "^4.5.8",
"watchify": "^3.7.0"
}
}