-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "imgHolder",
"version": "0.2.0",
"description": "Hold the place for images before they are done!",
"main": "imgholder.js",
"repository": {
"type": "git",
"url": "https://github.com/elmorec/imgHolder.git"
},
"keywords": [
"image",
"holder"
],
"author": "ElmoreCheng",
"license": "MIT",
"bugs": {
"url": "https://github.com/elmorec/imgHolder/issues"
},
"homepage": "https://github.com/elmorec/imgHolder",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2015-loose": "^7.0.0",
"babelify": "^7.2.0",
"bannerify": "Vekat/bannerify#feature-option",
"browserify": "^13.0.0",
"uglify-js": "^2.4.24",
"watchify": "^3.4.0"
},
"scripts": {
"build": "npm run build-debug && npm run build-min",
"build-debug": "browserify src/index.js -s imgHolder -t [babelify] -p [bannerify --file .banner ] -o dist/imgHolder-debug.js",
"build-min": "uglifyjs dist/imgHolder-debug.js --comments '/!/' -o dist/imgHolder.js"
}
}