-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.44 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
75
76
77
{
"name": "@pinkilo/yukibot",
"version": "1.0.0",
"description": "YouTube broadcast bot library",
"repository": "https://github.com/pinkilo/yukibotJS.git",
"author": "Pinkilo <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist",
"./public"
],
"scripts": {
"clean": "rm -rf node_modules coverage *.tsbuildinfo yarn.lock dist",
"prepare": "node prepare.js",
"prettier/format": "prettier --config .prettierrc.yaml -w src samples *.yaml *.json",
"prettier/check": "prettier --config .prettierrc.yaml -c src samples *.yaml *.json",
"compile": "tsc -p tsconfig.build.json",
"build/views": "cp -r src/views dist",
"build": "yarn compile && yarn build/views",
"watch/views": "nodemon --watch src -e njk,css --exec yarn build/views",
"watch/ts": "tsc -p tsconfig.build.json --watch",
"watch": "yarn watch/ts & yarn watch/views",
"test/coverage": "jest --coverage",
"test": "jest --ci --no-cache",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release"
},
"dependencies": {
"express": "^4.18.2",
"googleapis": "^110.0.0",
"nunjucks": "^3.2.4",
"typescript": "^5.0.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@types/express": "^4.17.17",
"@types/gapi": "^0.0.44",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/nunjucks": "^3.2.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^5.5.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"crypto-browserify": "^3.12.0",
"eslint": "^8.36.0",
"events": "^3.1.0",
"https-browserify": "^1.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"os-browserify": "^0.3.0",
"parcel": "^2.8.3",
"path-browserify": "^1.0.0",
"prettier": "^2.8.7",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"semantic-release": "^21.0.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"url": "^0.11.0",
"util": "^0.12.3"
}
}