-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.98 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
{
"name": "big-presentation-boilerplate",
"description": "big-presentation-boilerplate",
"version": "1.0.0",
"author": "Bret Comnes",
"bugs": {
"url": "https://github.com/bcomnes/big-presentation-boilerplate/issues"
},
"dependencies": {
"highlight.js": "^9.8.0"
},
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"autoprefixer": "^9.0.0",
"browserify": "^16.0.0",
"budo": "^11.0.0",
"cpx2": "^2.0.0",
"dependency-check": "^3.0.0",
"exorcist": "^1.0.0",
"mkdirp": "^0.5.1",
"napa": "^3.0.0",
"npm-run-all": "^4.0.0",
"postcss": "^7.0.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cli": "^6.0.0",
"postcss-import": "^12.0.1",
"postcss-reporter": "^6.0.0",
"postcss-url": "^8.0.0",
"rimraf": "^2.5.4",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"tape": "^4.6.2"
},
"homepage": "https://github.com/bcomnes/big-presentation-boilerplate#readme",
"keywords": [
"big",
"boilerplate",
"presentation"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/big-presentation-boilerplate.git"
},
"scripts": {
"build": "npm run clean && run-p build:*",
"build:css": "postcss src/index.css -o site/bundle.css",
"build:js": "browserify src/index.js --debug | exorcist site/bundle.js.map > site/bundle.js",
"build:static": "cpx 'src/{index.html,static/**}' site",
"clean": "rimraf site && mkdirp site",
"start": "npm run watch",
"test": "run-s test:* build",
"test:deps": "dependency-check ./package.json --entry src/index.js -i big",
"test:lint": "standard | snazzy",
"test:tape": "tape src/test.js | tap-format-spec",
"watch": "npm run clean && run-p watch:* build:static",
"watch:css": "run-s 'build:css -- --watch'",
"watch:js": "budo src/index.js:bundle.js --dir site --live --open",
"watch:static": "npm run build:static -- --watch",
"prepare": "napa tmcw/big"
}
}