forked from tinovyatkin/pass-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.75 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
{
"name": "@destinationstransfers/passkit",
"description": "Apple PassKit for the Node",
"homepage": "https://github.com/destinationstransfers/passkit",
"version": "5.0.0",
"engines": {
"node": ">=10.1"
},
"bin": {
"passkit-keys": "./bin/passkit-keys"
},
"devDependencies": {
"@destinationstransfers/eslint-config": "^6.3.0",
"eslint": "^5.14.1",
"jest": "^24.1.0",
"stream-buffers": "^3.0.2",
"weak": "^1.0.1"
},
"scripts": {
"test": "node --expose-gc node_modules/jest/bin/jest --detectOpenHandles --detectLeaks --notify --logHeapUsage",
"lint:js": "eslint \"**/*.{js,mjs,es6,babel}\" --ignore-pattern \"*test*\" --ignore-path .gitignore",
"preversion": "npm test",
"postversion": "git push origin master --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 <tino@vtkn.io>",
"dependencies": {
"color-string": "^1.5.3",
"node-forge": "^0.8.0",
"yazl": "^2.5.1"
},
"jest": {
"collectCoverage": true,
"bail": true,
"testEnvironment": "node",
"verbose": true,
"coverageReporters": [
"text",
"json",
"html",
"cobertura"
]
},
"eslintConfig": {
"extends": [
"@destinationstransfers"
],
"env": {
"node": true
},
"parserOptions": {
"sourceType": "script"
}
}
}