-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.36 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "miro-templating",
"version": "2.0.12",
"description": "Create new Miro boards based on a template. Includes tools to create & test the templates.",
"license": "Apache-2.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"source": "src/index.ts",
"bin": {
"create-miro-board": "dist/tools/create-board.js",
"create-miro-template": "dist/tools/create-template.js",
"query-miro-board": "dist/tools/query-board.js"
},
"bugs": {
"url": "https://github.com/Collaborne/miro-templating/issues"
},
"homepage": "https://github.com/Collaborne/miro-templating#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Collaborne/miro-templating.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint \"**/*.ts\" \"tools/**/*.ts\"",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest --maxWorkers=50%",
"create-board": "cross-env-shell TS_NODE_FILES=true \"node -r ts-node/register ${_NODE_ARGS} tools/create-board.ts\"",
"create-template": "cross-env-shell TS_NODE_FILES=true \"node -r ts-node/register ${_NODE_ARGS} tools/create-template.ts\""
},
"files": [
"src/",
"eslint.json",
"tsconfig*.json",
"dist/"
],
"engines": {
"node": ">=12.13.0"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/jest": "^29.5.11",
"@types/mkdirp": "^1.0.0",
"@types/node": "^14.14.25",
"@types/node-fetch": "^2.6.10",
"eslint": "^8.56.0",
"eslint-config-collaborne": "^5.4.3",
"jest": "^29.7.0",
"nyc": "^15.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.4.0",
"tsconfig-collaborne": "^1.8.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@mirohq/miro-api": "^2.1.0",
"@types/marked": "^0.7.3",
"@types/request": "^2.48.4",
"@types/request-promise-native": "^1.0.17",
"async": "^3.2.5",
"check-node-version": "^3.0.0",
"cross-env": "^7.0.2",
"log4js": "^6.0.0",
"marked": "^1.1.0",
"mkdirp": "^1.0.4",
"npm-warn-shrinkwrap": "^1.0.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"source-map-support": "^0.5.6"
},
"nyc": {
"exclude": [
"**/*.d.ts",
"dist/",
"test/"
],
"all": true
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/*.spec.ts"
]
}
}