This repository was archived by the owner on Apr 23, 2024. It is now read-only.
generated from saitho/nodejs-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.69 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
{
"name": "@saithodev/bingo",
"description": "Play Bingo!",
"version": "1.1.0",
"author": "Mario Lubenka",
"license": "CC-BY-NC-4.0",
"keywords": [
"bingo"
],
"repository": {
"type": "git",
"url": "https://github.com/saitho/bingo.git"
},
"scripts": {
"start": "http-server dist",
"dev:serve": "live-server dist",
"build": "rm -rf dist && mkdir -p dist/css && mkdir -p dist/webfonts && ts-appversion --root `pwd` && rollup -c && cp -r resources/* dist && cp node_modules/@fortawesome/fontawesome-free/css/all.min.css dist/css/fontawesome.css && cp -r node_modules/@fortawesome/fontawesome-free/webfonts dist",
"docs:build": "ts-appversion --pnpm && typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src/ && touch ./docs/.nojekyll",
"test": "jest --detectOpenHandles --coverage --verbose",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.12.1",
"@rollup/plugin-typescript": "^4.0.0",
"@saithodev/semantic-release-sharedconf-npm": "^2.0.2",
"@saithodev/ts-appversion": "^2.2.0",
"@types/jest": "^24.0.23",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"jest": "^24.9.0",
"live-server": "^1.2.1",
"rollup": "^2.0.3",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"semantic-release": "^16.0.1",
"ts-jest": "^24.2.0",
"ts-mockito": "^2.5.0",
"tslib": "^1.11.1",
"typedoc": "^0.15.8",
"typescript": "^3.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"http-server": "^0.12.1"
}
}