-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "ynab",
"version": "2.6.0",
"description": "YNAB API Javascript (Node) Library",
"author": "YNAB",
"email": "[email protected]",
"url": "https://api.ynab.com",
"keywords": [
"typescript",
"open-api",
"ynab",
"api"
],
"files": [
"dist/",
"dist/esm",
"dist/browser"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ynab/ynab-sdk-js.git"
},
"engines": {
"node": ">=14"
},
"scripts": {
"generate": "./scripts/generate.mjs",
"build": "tsc -b src/ test/ examples/ && tsc -b src/tsconfig.esm.json && webpack --mode production && npm run build_examples",
"build_examples": "tsc -b examples/",
"test": "TS_NODE_PROJECT=./test/tsconfig.json mocha --reporter spec --require ts-node/register/type-check 'test/**/*.ts'"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/fetch-mock": "^7.3.2",
"@types/mocha": "^8.0.2",
"@types/node": "^14.0.27",
"chai": "^4.2.0",
"fetch-mock": "^9.10.6",
"jsh": "0.55.0",
"mocha": "^10.2.0",
"ts-loader": "^8.0.2",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"url": "^0.11.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"fetch-ponyfill": "^7.1.0"
}
}