-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (43 loc) · 1.51 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
38
39
40
41
42
43
44
{
"name": "ui-tree.js",
"version": "1.0",
"description": "Pure javascript implementation of three-state checkboxes nested collapsible tree. Optimized for large amount of data.",
"keywords": [
"ui",
"checkbox",
"tree"
],
"main": "src/index.js",
"author": "Yurk Sha (http://yurks.github.io)",
"license": "MIT",
"homepage": "https://github.com/yurks/ui-tree",
"repository": {
"type": "git",
"url": "https://github.com/yurks/ui-tree.git"
},
"bugs": {
"url": "https://github.com/yurks/ui-tree/issues"
},
"scripts": {
"build-css": "postcss --use autoprefixer src/ui-tree.css -o dist/ui-tree.css",
"build-js": "browserify -e src/ui-tree.js | bundle-collapser > dist/ui-tree.js",
"publish-css": "postcss --use cssnano dist/ui-tree.css -o dist/ui-tree.min.css",
"publish-js": "uglifyjs dist/ui-tree.js -c -m -o dist/ui-tree.min.js",
"build": "npm run build-js & npm run build-css",
"publish": "npm run build & npm run publish-js & npm run publish-css",
"watch": "parallelshell \"npm run watch-css\" \"npm run watch-js\" \"serve .\"",
"watch-css": "nodemon --watch src --ext css --exec \"npm run build-css\"",
"watch-js": "watchify src/ui-tree.js -o dist/ui-tree.js --verbose"
},
"devDependencies": {
"autoprefixer": "^5.2.0",
"browserify": "^10.2.4",
"bundle-collapser": "^1.2.0",
"cssnano": "^1.4.0",
"nodemon": "^1.3.7",
"parallelshell": "^1.1.1",
"postcss-cli": "^1.3.1",
"serve": "^1.4.0",
"uglify-js": "^2.4.23"
}
}