-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "@j3lte/pluggable-widget-utils",
"version": "0.2.2",
"description": "Missing things for Mendix Pluggable Widgets",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/j3lte/pluggable-widget-utils.git"
},
"bugs": {
"url": "https://github.com/j3lte/pluggable-widget-utils/issues"
},
"author": {
"name": "Jelte Lagendijk",
"email": "[email protected]",
"url": "https://github.com/j3lte/pluggable-widget-utils"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^10.7.0",
"@types/jest": "^29.0.2",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"esbuild": "^0.19.9",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
},
"keywords": [
"mendix",
"pluggable",
"widget",
"utils"
],
"files": [
"lib"
],
"peerDependencies": {
"react": "^18.2.0"
},
"main": "lib/index",
"types": "lib/index",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf lib && rimraf coverage && rimraf docs",
"release": "npm run clean && npm run build && npm run docs",
"docs": "typedoc --entryPoints src/index.ts",
"watch-release": "watch 'npm run release' src"
},
"dependencies": {
"watch": "^1.0.2"
}
}