forked from Wizcorp/node-iap
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "@12min/iap",
"version": "2.2.2",
"description": "In-app purchase validation for Apple, Google, Amazon, Roku",
"main": "./dist/index.js",
"module": true,
"scripts": {
"test": "jest --verbose",
"lint": "eslint ./**/*.[tj]s ./bin/verify-payment",
"ci": "npm run lint && npm test -- --coverage && coveralls < coverage/lcov.info",
"build": "tsc --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/12min/node-iap"
},
"keywords": [
"iap",
"amazon",
"apple",
"google",
"roku",
"android",
"ios",
"purchase",
"itunes"
],
"author": "Ron Korving <[email protected]>",
"license": "MIT",
"dependencies": {
"invariant": "2.2.4",
"jsonwebtoken": "8.5.1",
"jwt-simple": "0.5.6",
"minimist": "1.2.5",
"request": "2.88.2",
"request-promise-native": "1.0.8"
},
"devDependencies": {
"@types/invariant": "2.2.31",
"@types/jest": "25.1.3",
"@types/jsonwebtoken": "8.3.8",
"@types/node": "13.7.7",
"@types/request-promise-native": "1.0.17",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"coveralls": "3.0.9",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.20.1",
"husky": "3.0.2",
"jest": "25.1.0",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}