-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "ps2-codes",
"version": "1.0.3",
"description": "Cheat codes parsing and converting",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"postbuild": "rm -rf dist/test && cp -R dist/src/* dist/ && rm -rf dist/src",
"build:clean": "npm run clean && npm run build",
"clean": "rm -rf ./package && rm -rf dist",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"test": "ts-mocha 'test/**/*.test.ts'",
"prepublish": "npm run build:clean",
"publish": "clean-publish"
},
"keywords": [
"ps2",
"cheats",
"aethersx2",
"pcsx2"
],
"author": "mishamyrt",
"license": "GPL-3.0",
"clean-publish": {
"files": ["src"],
"tempDir": "package",
"packageManager": "npm"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"clean-publish": "^4.0.1",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}