-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1004 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1004 Bytes
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
{
"name": "javascriptsnippet",
"widgetName": "JavaScriptSnippet",
"version": "2.2.2",
"description": "Insert custom JavaScript to your page.",
"copyright": "2024 Incentro International BV",
"author": "Rob Duits",
"engines": {
"node": ">=16"
},
"license": "MIT",
"config": {
"projectPath": "../../",
"mendixHost": "http://localhost:8080",
"developmentPort": 3000
},
"packagePath": "incentro",
"scripts": {
"start": "pluggable-widgets-tools start:server",
"dev": "pluggable-widgets-tools start:web",
"build": "pluggable-widgets-tools build:web",
"lint": "pluggable-widgets-tools lint",
"lint:fix": "pluggable-widgets-tools lint:fix",
"prerelease": "npm run lint",
"release": "pluggable-widgets-tools release:web"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^10.7.2"
},
"dependencies": {
"classnames": "^2.5.1"
}
}