forked from voltrue2/in-app-purchase
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.61 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@champie/in-app-purchase",
"description": "In-App-Purchase validation and subscription management for iOS, Android, Amazon, and Windows",
"version": "1.14.2",
"author": "Nobuyori Takahashi <voltrue2@yahoo.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/champie/in-app-purchase.git"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.0",
"fb": "^2.0.0",
"jwt-simple": "^0.5.6",
"request": "^2.88.2",
"urlsafe-base64": "^1.0.0",
"xml-crypto": "^6.0.0"
},
"devDependencies": {
"eslint": "^10.0.0",
"mocha": "^11.0.1"
},
"scripts": {
"lint": "make lint",
"test": "make lint && make test",
"publish": "npm publish --access public"
},
"#engine": "node >= 12",
"contributors": [],
"keywords": [
"Apple",
"iOS",
"Android",
"Windows",
"Amazon",
"Roku",
"Purchase",
"Subscription",
"App",
"in-app-purchase",
"in-app-billing",
"Validation",
"IAP"
],
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"jsx": true
},
"env": {
"node": true,
"es6": true,
"amd": true,
"mocha": true
},
"rules": {
"max-depth": "error",
"no-undef": "error",
"no-unused-vars": "error",
"no-cond-assign": "error",
"no-console": "warn",
"no-dupe-args": "error",
"no-dupe-keys": "error",
"no-empty": "error",
"no-duplicate-case": "error",
"no-func-assign": "error",
"no-inner-declarations": "warn",
"no-irregular-whitespace": "error",
"no-obj-calls": "error",
"no-sparse-arrays": "error",
"no-unreachable": "error",
"no-unsafe-negation": "error",
"use-isnan": "error",
"valid-typeof": "error",
"dot-notation": "warn",
"guard-for-in": "off",
"no-eval": "error",
"no-global-assign": "error",
"no-implicit-globals": "error",
"no-implied-eval": "error",
"no-loop-func": "error",
"no-octal": "off",
"no-octal-escape": "off",
"no-proto": "error",
"no-redeclare": "error",
"no-restricted-properties": "error",
"eqeqeq": "error",
"quotes": [
"error",
"single"
],
"curly": "error",
"camelcase": "error",
"validthis": "off",
"bitwise": "off",
"semi": "error"
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/champie/in-app-purchase/issues"
},
"homepage": "https://github.com/champie/in-app-purchase#readme",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
}
}