-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "render-plantuml",
"version": "0.3.2",
"description": "A web component for rendering PlantUML diagrams using an external server",
"main": "src/index.js",
"author": "Joris Kraak <[email protected]>",
"bugs": {
"url": "https://github.com/bauglir/render-plantuml/issues"
},
"devDependencies": {
"@pika/cli": "0.2.0",
"@pika/pack": "0.5.0",
"@pika/plugin-build-web": "0.9.2",
"@pika/plugin-standard-pkg": "0.9.2",
"np": "10.0.7",
"pika-plugin-minify": "0.1.0",
"pika-plugin-unpkg-field": "1.1.0"
},
"homepage": "https://github.com/bauglir/render-plantuml#readme",
"keywords": [
"PlantUML",
"Visualization",
"Web Component"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bauglir/render-plantuml.git"
},
"scripts": {
"build": "pika build",
"release": "pika publish",
"test": "echo \"Warning: no test specified\" && exit 0",
"version": "npm run build"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-web"
],
[
"pika-plugin-minify"
],
[
"pika-plugin-unpkg-field"
]
]
}
}