forked from luttje/glua-api-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.86 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.86 KB
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
{
"name": "glua-api-scraper",
"description": "Scrapes the Garry's Mod Wiki in order to build annotations for Lua Language Server to provide intellisense.",
"keywords": [
"Garry's Mod",
"api",
"EmmyLua",
"Lua",
"Language Server"
],
"homepage": "https://github.com/luttje/glua-api-snippets",
"repository": {
"type": "git",
"url": "https://github.com/luttje/glua-api-snippets"
},
"author": "Luttje",
"license": "MIT",
"version": "0.2.0",
"type": "module",
"scripts": {
"clear-output": "rm -rf ./output/",
"wiki-check-changed": "npx ts-node-esm ./src/cli-change-checker.ts",
"scrape-wiki": "npx ts-node-esm ./src/cli-scraper.ts --output ./output/ --customOverrides ./custom/",
"pack-release": "npx ts-node-esm ./src/cli-release-packer.ts --input ./output/ --output ./dist/release/",
"publish-library": "npx ts-node-esm ./src/cli-library-publisher.ts --input ./output/ --output ./dist/libraries/garrysmod",
"stylua-custom": "npx --yes @johnnymorganz/stylua-bin@0.17.1 ./custom",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules VERBOSE_LOGGING=1 npx jest",
"ci:test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --ci --coverage"
},
"devDependencies": {
"@types/archiver": "^5.3.2",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"archiver": "^5.3.1",
"cheerio": "^1.0.0-rc.12",
"cross-env": "^7.0.3",
"fetch-retry": "^5.0.4",
"html-loader": "^4.2.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"node-stream-zip": "^1.15.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.1.0",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"gitHead": "2513190cc1de00d1049e35f9c942b779447530f9",
"engines": {
"node": ">=18.0.0"
},
"engineStrict": true
}