-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "passes",
"version": "0.0.1",
"description": "passes.js is a library for creating Apple and Google Wallet passes, written in typescript.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"init-jest": "jest --init",
"lint-and-compile": "eslint . && tsc",
"build": "npm run lint-and-compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peacefulpocket/passes.js.git"
},
"author": "",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/peacefulpocket/passes.js/issues"
},
"homepage": "https://github.com/peacefulpocket/passes.js#readme",
"dependencies": {
"@types/luxon": "^3.0.1",
"@types/node-forge": "^1.3.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"luxon": "^3.0.4",
"node-forge": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^18.7.23",
"jest": "^29.1.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}