-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.55 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.55 KB
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
86
87
88
89
90
91
92
93
94
{
"name": "@jeltemx/mendix-react-widget-utils",
"version": "0.9.0",
"description": "Mendix Widget utils to make widget development a little easier",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JelteMX/mendix-react-widget-utils.git"
},
"bugs": {
"url": "https://github.com/JelteMX/mendix-react-widget-utils/issues"
},
"homepage": "https://jeltemx.github.io/mendix-react-widget-utils/",
"author": {
"name": "Jelte Lagendijk",
"email": "jelte.lagendijk@mendix.com",
"url": "https://github.com/JelteMX/mendix-react-widget-utils"
},
"keywords": [
"mendix",
"react",
"widget",
"utils"
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build:ts": "tsc",
"build": "npm run build:ts && npm run typedoc && npm run assets",
"watch-build": "npm run build:ts && npm run typedoc",
"typedoc": "node ./node_modules/.bin/typedoc ./src/",
"assets": "cp -r ./assets/* ./docs/ && cp -r ./assets/.nojekyll ./docs/",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm-watch watch-build",
"watch:test": "jest --watch"
},
"dependencies": {
"uuid": "^7.0.3",
"versioning": "^1.1.2"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@mendix/pluggable-widgets-tools": "^8.7.2",
"@types/jest": "^25.2.1",
"@types/uuid": "^7.0.2",
"coveralls": "^3.0.11",
"jest": "^25.3.0",
"jsdoc-babel": "^0.5.0",
"mendix-client": "^7.15.8",
"npm-watch": "^0.6.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"preset": "ts-jest"
},
"watch": {
"watch-build": {
"patterns": [
"src"
],
"extensions": "ts",
"quiet": false,
"legacyWatch": true,
"delay": 2500,
"runOnChangeOnly": false
}
}
}