-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.64 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.64 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
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
{
"name": "@exoshtw/admob-ssv",
"version": "0.1.0",
"description": "Tool for validate AdMob rewarded ads signatures SSV",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"check": "./hooks/check.sh",
"lint": "npx eslint './src/**/*.{t,j}s'",
"build": "rm -rf lib/**; npx tsc -p tsconfig.json",
"prepublish": "npm run lint",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exoshtw/node-admob-ssv.git"
},
"keywords": [
"AdMob",
"SSV",
"ECDSA",
"SHA256WithECDSA",
"Rewarded",
"ad"
],
"author": "exos <exos@kaktheplanet.xyz>",
"license": "GPL-2.0",
"husky": {
"hooks": {
"pre-commit": "./hooks/pre-commit.sh"
}
},
"jest": {
"preset": "ts-jest",
"verbose": true,
"collectCoverage": true,
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/"
]
},
"bugs": {
"url": "https://github.com/exoshtw/node-admob-ssv/issues"
},
"homepage": "https://github.com/exoshtw/node-admob-ssv#readme",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.0.0",
"@types/node": "^20.19.27",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^48.0.0",
"husky": "^9.1.7",
"jest": "^29.0.0",
"jest-spec-reporter": "^1.0.12",
"npm-check-updates": "^19.2.0",
"ts-jest": "^29.0.0",
"typescript": "^5.6.3"
},
"dependencies": {
"debug": "^4.1.1"
},
"engines": {
"node": ">=20.19.5"
}
}