This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.58 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
{
"name": "supercell-swf",
"version": "2.1.0",
"description": "Module for loading and processing SupercellSWF assets.",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"install": "node-gyp-build",
"prepublishOnly": "npm test",
"prepack": "npm test",
"build": "npm rum build:native & npm run build:ts",
"build:ts": "tsc",
"build:native": "node-gyp build",
"prebuild": "prebuildify --napi",
"prebuild:android_x64": "prebuildify --napi --platfrom android --arch arm64",
"prebuild:linux_x64": "prebuildify --napi --platfrom linux --arch x64",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/jest": "^29.4.0",
"@types/node": "^16.18.8",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"node-addon-api": "^6.1.0",
"node-gyp": "^9.3.1",
"prebuildify": "^5.0.1",
"prettier": "^2.8.4",
"prettier-config-standard": "^5.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"author": "DaniilSV",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Daniil-SV/SupercellSWF-JS.git"
},
"dependencies": {
"node-gyp-build": "^4.5.0"
}
}