-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 1.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@moovio/node",
"version": "1.2.2",
"description": "Node SDK for the Moov API and Dashboard",
"module": "dist/mjs/index.js",
"main": "dist/cjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "lib/types/index.d.ts",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moovfinancial/moov-node"
},
"keywords": [
"nodejs",
"sdk"
],
"author": {
"name": "Moov Financial",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/moovfinancial/moov-node/issues"
},
"homepage": "https://github.com/moovfinancial/moov-node#readme",
"files": [
"dist/**/*",
"lib/**/*"
],
"scripts": {
"build": "chmod +x fixup.sh && rm -fr dist/* && tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json && ./fixup.sh",
"docs": "node ./scripts/generateDocs.cjs",
"docs-watch": "watch \"npm run docs\" ./docs/templates",
"docs-clean": "rm ./docs/output/*.*",
"test": "ava ./lib/**/*.test.js",
"generate-types": "tsc",
"test-watch": "ava --watch ./lib/**/*.test.js"
},
"devDependencies": {
"ava": "^4.0.0",
"change-case": "^4.1.2",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.9.8",
"jsdoc": "^4.0.2",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"watch": "^0.13.0"
},
"dependencies": {
"got-cjs": "^12.0.0",
"ts-node": "^10.8.0"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}