This repository has been archived by the owner on May 6, 2024. It is now read-only.
forked from tinovyatkin/pass-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.66 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
{
"name": "@destinationstransfers/passkit",
"description": "Apple PassKit for the Node",
"homepage": "https://github.com/destinationstransfers/passkit",
"version": "3.8.0",
"engines": {
"node": ">=8"
},
"bin": {
"passkit-keys": "./bin/passkit-keys"
},
"devDependencies": {
"@destinationstransfers/eslint-config": "^1.0.2",
"eslint": "^4.4.1",
"eslint-plugin-node": "^5.1.1",
"jest": "^20.0.4",
"remark-cli": "^4.0.0",
"remark-preset-lint-consistent": "^2.0.0",
"remark-preset-lint-recommended": "^3.0.0",
"stream-buffers": "^3.0.1"
},
"scripts": {
"test": "jest",
"lint:markdown": "remark . --frail",
"lint:js": "eslint *.js --ignore-path .gitignore",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"keywords": [
"iOS",
"apple",
"passbook",
"library"
],
"repository": {
"type": "git",
"url": "https://github.com/destinationstransfers/passkit.git"
},
"bugs": {
"url": "http://github.com/destinationstransfers/passkit/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/destinationstransfers/passkit/blob/master/MIT-LICENSE"
}
],
"directories": {
"lib": "src",
"test": "__tests__"
},
"author": "Tino Vyatkin <[email protected]>",
"license": "ISC",
"dependencies": {
"@destinationstransfers/apn": "^2.2.2",
"color-string": "^1.5.2"
},
"remarkConfig": {
"presets": [
"lint-recommended",
"lint-consistent"
]
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"verbose": true,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}