-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "iap-receipt-validator",
"description": "Validates In App Purchases receipts on App Store",
"version": "1.1.0",
"author": "Sibelius Seraphini <[email protected]>",
"bugs": {
"url": "https://github.com/sibelius/iap-receipt-validator/issues"
},
"dependencies": {
"babel-preset-react-native-stage-0": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.0.0",
"jest-cli": "^18.0.0"
},
"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",
"release:major": "npm version major && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:patch": "npm version patch && git push --follow-tags && npm publish",
"start": "babel-node src/index.js",
"test": "jest --coverage --runInBand --forceExit"
}
}