-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 KB
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
45
46
47
48
49
{
"name": "flex-box",
"version": "1.0.0",
"description": "flexible layout container component",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -t 6to5ify -t html2js-browserify -t cssify src/index.js > index.js",
"postbuild": "npm run minify",
"minify": "uglifyjs index.js > index.min.js",
"watch": "onchange 'src/*' -- npm run build",
"prewatch": "npm run build",
"prepublish": "npm run build"
},
"author": "potch",
"license": "ISC",
"devDependencies": {
"6to5ify": "^3.1.0",
"browserify": "^7.0.3",
"cssify": "^0.6.0",
"html2js-browserify": "0.0.2",
"onchange": "0.0.2",
"uglify-js": "^2.4.16"
},
"directories": {
"test": "test"
},
"dependencies": {
"browserify": "^7.1.0",
"6to5ify": "^3.1.0",
"html2js-browserify": "^0.0.2",
"onchange": "^0.0.2",
"uglify-js": "^2.4.16",
"cssify": "^0.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/potch/flex-box.git"
},
"keywords": [
"webcomponents",
"flexbox",
"customelement"
],
"bugs": {
"url": "https://github.com/potch/flex-box/issues"
},
"homepage": "https://github.com/potch/flex-box"
}