-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 893 Bytes
/
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
{
"name": "onebusaway-api-client",
"version": "1.0.7",
"description": "",
"main": "dist/index.js",
"module": "dist/index.m.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && microbundle --tsconfig tsconfig.json --no-sourcemap",
"test": "jest",
"start": "NODE_ENV=production ts-node main.ts"
},
"files": [
"dist"
],
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"isomorphic-unfetch": "^4.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"nock": "^14.0.0-beta.5",
"talkback": "^3.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}