-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
90 lines (90 loc) · 2.63 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "demofile",
"version": "2.10.0",
"author": "Saul Rennison <[email protected]>",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"demo",
"source",
"csgo"
],
"repository": {
"type": "git",
"url": "https://github.com/saul/demofile.git"
},
"scripts": {
"test": "jest",
"lint": "eslint --report-unused-disable-directives --ext .ts ./src",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "shx rm -rf dist && shx rm -f tsconfig.tsbuildinfo && tsc",
"build:incremental": "tsc --incremental",
"watch": "tsc -w",
"generate-docs": "shx rm -rf docs && typedoc --out docs/ src/index.ts && shx touch docs/.nojekyll && echo demofile.dev > docs/CNAME",
"bundle": "npm run build && browserify browser/app.js -d -o browser/bundle.js",
"preversion": "npm run lint --fix && shx rm -rf dist browser/bundle.js && npm run bundle && git add -A browser/bundle.js dist/**",
"version": "npm run generate-docs && git add -A docs",
"postversion": "git push && git push --tags"
},
"files": [
"dist",
"browser",
"typings"
],
"dependencies": {
"@types/bytebuffer": "^5.0.44",
"big-integer": "^1.6.51",
"bit-buffer": "0.0.3",
"bytebuffer": "^5.0.1",
"immutable": "^4.1.0",
"iter-tools": "^7.5.0",
"long": "^3.0.3",
"protobufjs": "^6.8.8"
},
"devDependencies": {
"@node-steam/vdf": "^2.2.0",
"@types/ansi-styles": "^3.2.1",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/request": "^2.48.8",
"@types/selenium-webdriver": "^4.0.9",
"@types/stream-buffers": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"ansi-styles": "^3.2.1",
"browserify": "^16.5.0",
"buffer": "^5.2.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-typestrict": "^1.0.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.16.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"minami": "^1.2.3",
"nock": "^13.2.9",
"prettier": "~2.7.1",
"pretty-quick": "^3.1.3",
"request": "^2.88.2",
"selenium-webdriver": "^4.0.0-alpha.7",
"shx": "^0.3.2",
"stream-buffers": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-proto": "^1.131.2",
"typedoc": "^0.23.20",
"typescript": "~4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}