-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "satisfactory-docs-parser",
"description": "Parser for Satisfactory's Docs.json file",
"version": "7.0.1",
"author": "LydianLights",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lydianlights/satisfactory-docs-parser.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test-cli": "npm run build && node ./dist/cli.js -i data/Docs.json -o data/parsed -m",
"lint": "eslint .",
"prepare": "ts-patch install -s && npm run build",
"np": "np --no-tests"
},
"bin": {
"parse-docs": "./dist/cli.js"
},
"devDependencies": {
"@types/node": "^15.0.3",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.27.2",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"np": "^7.6.3",
"ts-patch": "^2.1.0",
"typescript": "^4.9.4",
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"yargs": "^17.0.1"
}
}