-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "expensify-api",
"version": "1.0.1",
"description": "API access to Expensify; some actions through puppeteer, some actions through the integration server",
"main": "index.js",
"scripts": {
"build": "yarn run build:clean && yarn run build:ts",
"build:clean": "/bin/rm -rf dist/",
"build:ts": "tsc",
"typecheck": "tsc --noEmit",
"test": "yarn run auth:ensure && yarn run ts-node ./src/test.ts",
"auth:ensure": "./scripts/ensure_auth.sh",
"auth:gen": "./scripts/gen_auth.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanrhee/expensify-integration.git"
},
"author": "Ryan Rhee",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanrhee/expensify-integration/issues"
},
"homepage": "https://github.com/ryanrhee/expensify-integration#readme",
"dependencies": {
"io-ts": "^1.1.3",
"mz": "^2.7.0",
"node-fetch": "^2.1.2",
"puppeteer": "^1.4.0"
},
"devDependencies": {
"@types/mz": "^0.0.32",
"@types/node-fetch": "^2.1.0",
"@types/puppeteer": "^1.3.2",
"ts-node": "^6.0.5",
"typescript": "^2.8.4"
}
}