-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "@prismatic-io/embedded",
"description": "Embed Prismatic's integration marketplace and workflow designer within your existing application.",
"keywords": [
"prismatic",
"marketplace",
"iPaaS",
"integration",
"components",
"integration designer"
],
"homepage": "https://prismatic.io",
"bugs": {
"url": "https://github.com/prismatic-io/embedded"
},
"repository": {
"type": "git",
"url": "https://github.com/prismatic-io/embedded.git"
},
"license": "MIT",
"version": "2.11.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist/ && webpack",
"prepack": "npm run build",
"check-format": "prettier --check './src/**/*.{js,jsx,ts,tsx,css,html,json,scss}'",
"format": "prettier --loglevel error --write './src/**/*.{js,jsx,ts,tsx,css,html,json,scss}'",
"lint": "echo \"Warning: no lint specified\"",
"test": "echo \"Warning: no test specified\""
},
"devDependencies": {
"@types/node": "18.11.18",
"prettier": "2.8.3",
"ts-loader": "9.4.2",
"typescript": "4.9.5",
"webpack": "^5.96.1",
"webpack-cli": "5.0.1"
},
"dependencies": {
"@prismatic-io/translations": "^2.1.1",
"lodash.merge": "4.6.2",
"url-join": "5.0.0"
}
}