-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.92 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
{
"name": "hypermodul.es",
"description": "",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "run-s test:*",
"test:deps": "dependency-check ./package.json --no-dev",
"test:lint": "standard | snazzy",
"test:tape": "tape test/* | tap-format-spec",
"build": "npm run clean && run-p build:*",
"build:css": "postcss index.css -o dist/bundle.css",
"build:js": "browserify index.js --debug | exorcist dist/bundle.js.map > dist/bundle.js",
"build:md": "sitedown . -b dist -l layout.html",
"build:static": "cpx 'static/*' dist/static",
"watch": "npm run clean && run-p watch:* build:static",
"watch:css": "npm run build:css -- --watch",
"watch:js": "budo index.js:bundle.js --dir dist --live --open",
"watch:md": "npm run build:md -- -w",
"watch:static": "npm run build:static -- --watch",
"clean": "rimraf dist && mkdirp dist",
"start": "npm run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypermodules/hypermodul.es.git"
},
"author": "Bret Comnes",
"license": "ISC",
"bugs": {
"url": "https://github.com/hypermodules/hypermodul.es/issues"
},
"homepage": "https://github.com/hypermodules/hypermodul.es#readme",
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"big-cursors.css": "^1.0.0",
"cpx2": "^2.0.0",
"autoprefixer": "^9.0.0",
"browserify": "^16.0.0",
"budo": "^11.0.0",
"dependency-check": "^4.1.0",
"exorcist": "^1.0.0",
"fraktur.css": "^1.0.0",
"highlight.js": "^10.0.0",
"mkdirp": "^1.0.0",
"npm-run-all": "^4.0.0",
"postcss": "^7.0.0",
"postcss-browser-reporter": "^0.6.0",
"postcss-cli": "^7.0.0",
"postcss-import": "^12.0.0",
"postcss-reporter": "^6.0.0",
"postcss-url": "^8.0.0",
"rimraf": "^3.0.0",
"sitedown": "^4.0.0",
"snazzy": "^8.0.0",
"standard": "^14.0.0",
"style.css": "^1.0.0-alpha-8",
"tape": "^4.6.2"
}
}