-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 946 Bytes
/
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
{
"name": "@workshopcodes/deserializer",
"version": "1.2.8",
"description": "A JSON deserializer for Overwatch Workshop game settings",
"author": "stormyy_ow",
"repository": {
"type": "git",
"url": "https://github.com/SussieRawrin/workshop-deserializer.git"
},
"main": "lib/app.js",
"types": "lib",
"scripts": {
"start": "tsc && node lib/app.js",
"lint": "eslint ./package --ext .ts",
"mint": "eslint ./package --ext .ts --fix",
"build": "tsc -p ."
},
"devDependencies": {
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"typescript": "^4.1.3",
"@types/parsimmon": "^1.10.6"
},
"dependencies": {
"parsimmon": "^1.16.0"
}
}