-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "@mirohq/miro-api",
"version": "2.2.4",
"description": "Node.js client for the Miro REST API",
"repository": {
"type": "git",
"url": "https://github.com/miroapp/api-clients.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -Rf node_modules/ *.js",
"build": "tsc",
"prebuild:docs": "tsc --jsx react docs-theme/index.tsx --jsxFactory JSX.createElement --jsxFragmentFactory JSX.Fragment --target es2016 --module commonjs --esModuleInterop",
"build:docs": "typedoc",
"test": "jest",
"coverage": "jest --coverage --coverageDirectory coverage --coverageReporters clover"
},
"author": "Miro",
"license": "MIT",
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^12",
"@types/node-fetch": "^2.6.4",
"jest": "^29.7.0",
"typedoc": "^0.23.25",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.0"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"transform": {
"^.+\\.tsx?$": [
"esbuild-jest",
{
"format": "cjs"
}
]
}
}
}