forked from sibelius/iap-receipt-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "iap-receipt-validator",
"description": "Validates In App Purchases receipts on App Store",
"version": "1.0.4",
"author": "Sibelius Seraphini <[email protected]>",
"bugs": {
"url": "https://github.com/sibelius/iap-receipt-validator/issues"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"babel-preset-stage-0": "^6.5.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.3"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/sibelius/iap-receipt-validator#readme",
"keywords": [
"app store",
"fetch",
"iap",
"receipt",
"validation"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sibelius/iap-receipt-validator"
},
"scripts": {
"build": "babel src -d lib",
"lint": "eslint .",
"prepublish": "npm run build",
"start": "babel-node src/index.js",
"test": "mocha --compilers js:babel-register"
}
}