-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 822 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "polyfill",
"version": "0.4.1",
"repository": {
"type": "git",
"url": "https://github.com/skyglobal/polyfil.git"
},
"dependencies": {
"es5-shim": "^4.1.1",
"es5-shim-sham": "0.0.1"
},
"devDependencies": {
"browserify": "12.0.1",
"minifyify": "7.1.0"
},
"scripts": {
"build-require-js": "browserify src/scripts/polyfill.requirejs.js -p [minifyify --map polyfill.requirejs.map.json --output dist/polyfill.requirejs.map.json] -d -o dist/polyfill.requirejs.min.js",
"build-normal": "browserify src/scripts/polyfill.js -p [minifyify --map polyfill.map.json --output dist/polyfill.map.json] -d -o dist/polyfill.min.js",
"build": "rm -rf dist && mkdir dist && npm run build-require-js && npm run build-normal",
"version": "bash scripts/update-version.sh"
}
}