-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
21 lines (21 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "perfect-layout",
"version": "1.2.1",
"description": "Image layout generator based on linear partitioning",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/browserify index.js -t babelify -t uglifyify --standalone perfectLayout -o dist/perfectLayout.min.js",
"build-dev": "./node_modules/.bin/browserify index.js -t babelify --standalone perfectLayout -o dist/perfectLayout.js",
"build-jquery": "npm run build && ./node_modules/.bin/browserify jqueryPlugin.js -t babelify -t uglifyify -o dist/jquery.perfectLayout.min.js",
"build-jquery-dev": "npm run build-dev && ./node_modules/.bin/browserify jqueryPlugin.js -t babelify -o dist/jquery.perfectLayout.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "npm run build && npm run build-jquery && npm run build-dev && npm run build-jquery-dev"
},
"author": "Andrea Moretti (@axyz) <axyzxp@gmail.com>",
"license": "MIT",
"devDependencies": {
"babelify": "^6.2.0",
"browserify": "^11.0.1",
"uglifyify": "^3.0.1"
}
}