-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.08 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
{
"name": "elemjs",
"description": "Simple tool to build UIs",
"version": "0.1.29",
"main": "src/elem.js",
"homepage": "https://github.com/mathieuancelin/Elem",
"keywords": [
"DOM",
"component",
"WebComponent",
"browser"
],
"author": "Mathieu ANCELIN",
"repository": {
"type": "git",
"url": "git://github.com/mathieuancelin/Elem.git"
},
"license": "Apache-2.0",
"dependencies": {
},
"devDependencies": {
"watchify": "2.1.1",
"browserify": "6.2.0",
"uglify-js": "~2.4.15",
"webpack": "~1.5.3"
},
"scripts": {
"build": "browserify --standalone Elem src/elem.js -o dist/elem.js; uglifyjs dist/elem.js --source-map dist/elem.min.map --source-map-url elem.min.map -p 1 -mc -o dist/elem.min.js",
"watch": "watchify --standalone Elem src/elem.js -o dist/elem.js --debug --verbose",
"pack": "webpack --watch --colors -p --output-library Elem --output-library-target umd src/elem.js dist/elem.min.js",
"packdev": "webpack --watch --colors -d --output-library Elem --output-library-target umd src/elem.js dist/elem.js"
}
}