This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 2.18 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
{
"name": "satisfactory-mod-manager-api",
"version": "4.0.2",
"description": "API to manage installed Satisfactory mods",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "tsc --noEmit && eslint \"**/*.ts\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.ts\" --fix",
"build:ts": "tsc",
"build": "yarn lint:fix && yarn build:ts",
"debug": "nodemon --watch src/ -e ts --exec yarn test:debug || exit 1",
"test": "yarn build:ts && ts-mocha test/**/*.ts",
"test:debug": "yarn build:ts && cross-env NODE_DEBUG=SMManagerAPI ts-mocha test/**/*.ts",
"coverage": "nyc --reporter=lcov --reporter=text yarn test",
"prepublishOnly": "yarn test",
"prepare": "husky install"
},
"gypfile": true,
"author": "Mircea Roata",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/mircearoata/SatisfactoryModManagerAPI.git"
},
"homepage": "https://github.com/mircearoata/SatisfactoryModManagerAPI",
"devDependencies": {
"@graphql-codegen/cli": "^2.2.1",
"@graphql-codegen/introspection": "^2.1.0",
"@types/glob": "^7.2.0",
"@types/got": "^9.6.12",
"@types/lodash": "^4.14.176",
"@types/mocha": "^9.0.0",
"@types/semver": "^7.3.9",
"@types/sha.js": "^2.4.0",
"@types/winreg": "^1.2.31",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.4",
"isomorphic-fetch": "^3.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"should": "^13.2.3",
"ts-mocha": "^8.0.0",
"typescript": "^3.7.4"
},
"dependencies": {
"@apollo/client": "^3.4.16",
"apollo-link-scalars": "^3.0.0",
"filenamify": "^4.3.0",
"got": "^11.0.2",
"graphql": "15.6.1",
"graphql-scalars": "^1.12.0",
"graphql-tag": "^2.12.5",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"node-stream-zip": "^1.15.0",
"platform-folders": "^0.5.1",
"ps-list": "^7.2.0",
"semver": "^7.1.1",
"sha.js": "^2.4.11",
"vdf": "^0.0.2",
"win-ca": "^3.4.5",
"winreg": "^1.2.4"
}
}