-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
54 lines (54 loc) · 1.24 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
{
"name": "checkboxland",
"version": "1.5.0",
"description": "Render anything as HTML checkboxes",
"author": "Bryan Braun",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bryanbraun/checkboxland.git"
},
"bugs": {
"url": "https://github.com/bryanbraun/checkboxland/issues"
},
"homepage": "https://github.com/bryanbraun/checkboxland#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "pika build",
"publish": "pika publish --any-branch",
"version": "npm run build",
"dev": "http-server"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"tests/**/*",
"docs/**/*"
]
}
],
[
"@pika/plugin-build-web"
],
[
"pika-plugin-minify"
],
[
"@pika/plugin-build-types"
]
]
},
"devDependencies": {
"@pika/cli": "^0.2.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"http-server": "^14.1.0",
"pika-plugin-minify": "^0.1.0",
"typescript": "^3.9.5"
}
}