-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "dollabill-apple",
"version": "0.1.0",
"description": "Easily work with Apple in-app purchases. So you can more easily collect your \"Dolla dolla bills, ya'll\"",
"scripts": {
"test": "npx jest",
"format": "npx prettier --write \"{app,tests}/**/*.ts\"",
"build": "rm -rf dist && npx tsc && find dist -type f -name '*.test.js*' -delete && cp package*.json dist/ && cp LICENSE dist/ && cp README.md dist/",
"docs": "npx typedoc app",
"lint": "npx eslint --fix --ext ts,js . ; npx tsc --noEmit",
"watch": "npx tsc --watch",
"qa:setup": "npm run build && cd example && npm i && npm run link && cd .. && echo \"Success! You are setup for QA testing.\"",
"qa": "npm run build && cd example && npm run run || true && cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/levibostian/dollabill-apple.git"
},
"keywords": [
"Apple",
"iOS",
"Purchase",
"Subscription",
"App",
"in-app-purchase",
"in-app-billing",
"Validation",
"dolla",
"dollabill",
"IAP"
],
"author": "Levi Bostian <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/levibostian/dollabill-apple/issues"
},
"homepage": "https://github.com/levibostian/dollabill-apple#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint && lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,css,md}": [
"npm run format"
]
},
"devDependencies": {
"@levibostian/eslint-config-node": "^1.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.8",
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@types/tiny-json-http": "^7.3.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"codecov": "^3.8.1",
"eslint": "^7.14.0",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"typedoc": "^0.19.2",
"types-apple-iap": "^1.0.1",
"typescript": "^4.1.2"
},
"dependencies": {
"tiny-json-http": "^7.3.0"
}
}