-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "@tamtamchik/app-store-receipt-parser",
"version": "2.2.1",
"description": "A lightweight TypeScript library for extracting transaction IDs from Apple's ASN.1 encoded receipts.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./src/index.ts",
"author": "Yuri Tkachenko <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/tamtamchik/app-store-receipt-parser#readme",
"bugs": {
"url": "https://github.com/tamtamchik/app-store-receipt-parser/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tamtamchik/app-store-receipt-parser.git"
},
"keywords": [
"apple",
"receipt",
"parser",
"ASN.1",
"transaction",
"typescript"
],
"exports": {
".": {
"types": "./src/index.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"dependencies": {
"asn1js": "^3.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.1",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --clean",
"dev": "npm run build -- --watch src",
"lint": "eslint src --fix",
"test": "jest",
"coverage": "jest --coverage",
"prepublishOnly": "npm run build"
}
}