-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "genie-explorer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "budo app.js",
"test": "standard --env browser",
"build:dir": "rimraf build && mkdirp build && cpy CNAME build",
"build:browserify": "browserify app.js -p tinyify -p [ css-extract -o build/style.css ] > build/bundle.js",
"build:css": "purifycss build/bundle.js build/style.css --out build/style.css && postcss -r build/style.css",
"build:html": "indexhtmlify --style build/style.css --title 'genie-explorer' < build/bundle.js > build/index.html",
"build:clean": "rimraf build/style.css build/bundle.js",
"build": "npm run build:dir && npm run build:browserify && npm run build:css && npm run build:html && npm run build:clean"
},
"browserify": {
"transform": [
"nanohtml",
"brfs",
"sheetify"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/genie-js/genie-explorer.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/genie-js/genie-explorer/issues"
},
"homepage": "https://github.com/genie-js/genie-explorer#readme",
"devDependencies": {
"brfs": "^2.0.2",
"browserify": "^16.5.0",
"budo": "^11.6.3",
"cpy-cli": "^2.0.0",
"css-extract": "^1.3.0",
"cssnano": "^4.1.10",
"indexhtmlify": "^2.0.0",
"mkdirp": "^0.5.1",
"postcss-cli": "^6.1.3",
"postcss-preset-env": "^6.7.0",
"purify-css": "^1.2.6",
"rimraf": "^2.7.1",
"sheetify": "^8.0.0",
"standard": "^14.0.2",
"tinyify": "^2.5.1"
},
"dependencies": {
"choo-devtools": "^2.5.1",
"defined": "^1.0.0",
"genie-drs": "^3.2.0",
"genie-scx": "0.0.0-alpha.1",
"genie-slp": "^1.1.0",
"is-bmp": "^1.0.1",
"jascpal": "^0.1.4",
"nanochoo": "^6.13.0",
"nanocomponent": "^6.5.2",
"nanohtml": "^1.8.0",
"on-load": "^4.0.2",
"prettier-bytes": "^1.0.4",
"prismjs": "^1.23.0",
"raf-loop": "^1.1.3",
"tachyons-border-radius": "^5.1.3",
"tachyons-borders": "^3.0.4",
"tachyons-box-shadow": "^2.0.4",
"tachyons-box-sizing": "^3.2.2",
"tachyons-flexbox": "^2.1.1",
"tachyons-floats": "^3.0.5",
"tachyons-font-family": "^4.3.4",
"tachyons-font-weight": "^5.0.5",
"tachyons-heights": "^6.1.4",
"tachyons-hovers": "^2.5.2",
"tachyons-links": "^3.0.11",
"tachyons-lists": "^2.0.13",
"tachyons-overflow": "^4.0.6",
"tachyons-skins": "^4.1.1",
"tachyons-spacing": "^6.0.5",
"tachyons-text-align": "^3.1.0",
"tachyons-widths": "^5.2.1"
}
}