-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.62 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
{
"name": "@sgwillis/x-style",
"version": "0.0.3",
"description": "A Tiny Inline Nested CSS Library",
"main": "dist/x-style-all.min.js",
"unpkg": "dist/x-style-all.min.js",
"homepage": "https://github.com/samwillis/x-style",
"bugs": {
"url": "https://github.com/samwillis/x-style/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samwillis/x-style.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-x-style": "uglifyjs -c -m -b max_line_len=80,beautify=false -o dist/x-style.min.js -- x-style.js",
"build-x-style-nano": "uglifyjs -c -m -b max_line_len=80,beautify=false -o dist/x-style-nano.min.js -- x-style-nano.js",
"build-x-style-apply": "uglifyjs -c -m -b max_line_len=80,beautify=false -o dist/x-style-apply.min.js -- x-style-apply.js",
"build-x-style-envvar": "uglifyjs -c -m -b max_line_len=80,beautify=false -o dist/x-style-envvar.min.js -- x-style-envvar.js",
"build-x-style-unnest": "uglifyjs -c -m -b max_line_len=80,beautify=false -o dist/x-style-unnest.min.js -- x-style-unnest.js",
"build-x-style-all": "mkdir build && cat x-style.js x-style-apply.js x-style-envvar.js x-style-unnest.js > build/x-style-all.js && uglifyjs -c -m -b max_line_len=80,beautify=false -o dist/x-style-all.min.js -- build/x-style-all.js && rm -rf ./build",
"build": "npm run build-x-style && npm run build-x-style-nano && npm run build-x-style-apply && npm run build-x-style-envvar && npm run build-x-style-unnest && npm run build-x-style-all"
},
"author": "Sam Willis",
"license": "MIT",
"devDependencies": {
"uglify-js": "^3.17.4"
}
}