-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "dont-panic-ipsum",
"version": "1.2.0",
"description": "A placeholder text generator using quotes from A Hitchhiker's Guide to the Galaxy.",
"main": "index.js",
"scripts": {
"start": "http-server web/ -S -C cert.pem",
"watch": "sass src/sass:web --style expanded --embed-source-map --watch",
"compile": "sass src/sass:web --style compressed --no-source-map",
"pull-quotes": "node scripts/PullQuotes.js > web/Quotes.min.js",
"build": "npm run pull-quotes && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoritzLost/DontPanicIpsum.git"
},
"keywords": [
"lorem ipsum",
"hitchhikers guide to the galaxy",
"filler text",
"dummy text",
"blind text"
],
"author": "MoritzLost <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/MoritzLost/DontPanicIpsum/issues"
},
"homepage": "https://github.com/MoritzLost/DontPanicIpsum#readme",
"devDependencies": {
"bootstrap": "^4.3.1",
"http-server": "^0.11.1",
"sass": "^1.66.1"
},
"engines": {
"node": "^18.17.1",
"npm": "^10.0.0"
}
}