-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"private": false,
"name": "@1amageek/passkit",
"version": "3.2.0",
"scripts": {
"lint": "eslint \"src/**/*\"",
"prepare": "npm run build",
"build": "./node_modules/.bin/tsc -d"
},
"description": "passkit.ts is Passkit generator",
"contributors": [
{
"name": "Norikazu Muramoto",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/1amageek/passkit.ts.git"
},
"keywords": [
"passkit",
"apple",
"typescript"
],
"author": "1amageek",
"license": "MIT",
"bugs": {
"url": "https://github.com/1amageek/passkit.ts/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*"
],
"dependencies": {
"archiver": "^3.1.1",
"dateformat": "^3.0.3",
"global": "^4.4.0",
"mkdirp": "^0.5.5",
"node-forge": "^0.8.5",
"request": "^2.88.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/archiver": "^3.1.1",
"@types/jest": "^26.0.14",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.11.8",
"@types/node-forge": "^0.9.5",
"@types/request": "^2.48.5",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.22.1",
"firebase-admin": "^9.2.0",
"jest": "^26.5.3",
"ts-jest": "^24.0.2",
"typescript": "^3.9.7"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}