-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.97 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
{
"name": "thatPub",
"version": "1.0.0",
"description": "DoD policies and regulations search engine",
"main": "index.html",
"scripts": {
"clean": "sh clean.sh && rm -f dist/index.html dist/css/* dist/js/*",
"init": "npm install && bower install --force && sh setup-node-sass.sh && npm run dist",
"server": "npm run db && npm run git-not",
"db": "sh dbinit.sh",
"git-not": "screen -dmS git-notify node git-notify.js",
"dev": "npm run clean && npm run build",
"dist": "npm run clean && npm run build-dist && grunt",
"watch": "watchy -w src -- npm run dev",
"build": "npm run js && npm run css && cp src/index.html dist/index.html",
"build-dist": "npm run js dist && npm run css-dist && cp src/index.html dist/index.html",
"js": "sh compile-js.sh",
"css": "npm run sass && npm run css-build && cp .tmp/css/style.css dist/css/style.css",
"css-build": "postcss --use postcss-import --use autoprefixer --output .tmp/css/style.css .tmp/css/style.pre.css",
"css-dist": "npm run sass-dist && npm run css-build && npm run css-min",
"css-min": "cssnano .tmp/css/style.css dist/css/style.css",
"sass": "node util/node-sass/bin/node-sass src/scss/style.scss .tmp/css/style.pre.css",
"sass-dist": "node util/node-sass/bin/node-sass --output-style compressed src/scss/style.scss .tmp/css/style.pre.css",
"css-pure-old": "purifycss .tmp/css/style.css src/index.html src/js/build/script.js --out .tmp/css/style.css",
"inline-old": "critical src/index.html --base dist/ -H .tmp/index.full.html",
"inline-dist-old": "critical src/index.html --minify --extract --base dist/ -H .tmp/index.full.html",
"htmlmin-old": "html-minifier --collapse-whitespace --collapse-inline-tag-whitespace --html5 --case-sensitive --keep-closing-slash --process-conditional-comments --process-scripts text/template --remove-comments --remove-redundant-attributes --sort-attributes --sort-class-name -o dist/index.html .tmp/index.full.html"
},
"keywords": [
"publications",
"epubs",
"forms",
"dod",
"government",
"law",
"rules",
"regulations"
],
"repository": {
"type": "git",
"url": "https://github.com/thatpub/pub"
},
"author": "Deryck Henson",
"license": "MIT",
"dependencies": {
"body-parser": ">=1.10.2",
"bower": ">=1.3.12",
"cookie-parser": ">=1.3.3",
"cors": ">=2.5.3",
"elasticsearch": ">=3.1.1",
"express": ">=4.0.0",
"grunt": ">=0.4.5"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"bower": "^1.7.9",
"consolidate": ">=0.10.0",
"critical": "^0.7.3",
"cssnano": "^3.7.1",
"cssnano-cli": "^1.0.4",
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-htmlmin": "^0.4.0",
"grunt-contrib-imagemin": ">=0.9.2",
"grunt-inline": "^0.3.4",
"grunt-newer": ">=1.1.0",
"grunt-tinypng": ">=0.5.3",
"postcss": "^5.0.21",
"postcss-cli": "^2.5.2",
"postcss-import": "^8.1.2",
"purifycss": "^1.1.9",
"watchy": "^0.6.6"
}
}