-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "bcbp",
"version": "0.0.0-semantically-released",
"description": "Encoding/decoding library for the IATA Bar Coded Boarding Pass",
"main": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.esm.d.ts",
"repository": "github:georgesmith46/bcbp",
"scripts": {
"build": "rollup -c",
"test": "jest --testPathIgnorePatterns=\"/node_modules/\", \"/test/\"",
"test:timezone": "TZ=America/Santiago npm run test && TZ=Europe/Berlin npm run test && TZ=America/Los_Angeles npm run test",
"test:smoke": "jest test/smoke.test.js",
"release": "npx semantic-release"
},
"author": {
"name": "George Smith <georges8899@gmail.com>"
},
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"babel-jest": "^29.7.0",
"date-fns": "^3.6.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"rollup-plugin-ts": "3.2.0",
"semantic-release": "^24.0.0",
"typescript": "^5.5.4"
},
"keywords": [
"iata",
"boarding pass",
"barcode",
"encode",
"decode"
]
}