-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "bingo-card",
"version": "1.0.0",
"description": "Builds an interactive Bingo Card",
"main": "server.js",
"scripts": {
"start": "node server",
"build:css": "node-sass src/sass/ -o www/css --output-style=compressed --source-map=true",
"build:js2": "terser src/sw.js -o www/sw.min.js",
"build:js": "terser src/app.js -o www/js/app.min.js -c -m --source-map \"root='http://localhost:3000', url='/js/app.min.js.map'\"",
"build": "npm-run-all build:*",
"test": "standard && stylelint src/sass"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HaroldPutman/bingo-cards.git"
},
"keywords": [
"games",
"bingo"
],
"author": "Harold Putman <h.putman@ieee.org>",
"license": "ISC",
"bugs": {
"url": "https://github.com/HaroldPutman/bingo-cards/issues"
},
"homepage": "http://www.bingocard.me",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"standard": "^14.3.1",
"stylelint": "^12.0.1",
"stylelint-config-standard": "^19.0.0",
"terser": "^4.4.0"
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}