-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.56 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@amoutonbrady/baracuda",
"version": "1.4.0",
"private": false,
"description": "An alternative to JSX to work with HyperScript view layer",
"repository": "https://github.com/amoutonbrady/baracuda.git",
"license": "MIT",
"author": "Alexandre Mouton-Brady <amoutonbrady@gmail.com>",
"files": [
"pkg/"
],
"main": "src/index.ts",
"scripts": {
"build": "pika build",
"release": "pika publish",
"pretest": "yarn build",
"test": "riteway -r esm tests/**/*.test.js | tap-nirvana",
"version": "yarn build",
"prettier": "prettier --write \"{src,tests}/**/*.{ts,js}\""
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-web": "^0.8.1",
"@pika/plugin-bundle-web": "^0.8.1",
"@pika/plugin-copy-assets": "^0.8.1",
"@pika/plugin-ts-standard-pkg": "^0.8.1",
"esm": "^3.2.25",
"hyperapp": "^2.0.3",
"inferno-hyperscript": "^7.3.3",
"jsdom": "^15.2.1",
"nyc": "^15.0.0",
"pika-plugin-unpkg-field": "^1.1.0",
"preact": "^10.2.1",
"prettier": "^1.19.1",
"redom": "^3.25.0",
"riteway": "^6.1.1",
"tap-nirvana": "^1.1.0",
"typescript": "^3.7.4",
"vue": "^3.0.0-alpha.1"
},
"publishConfig": {
"access": "public"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-bundle-web",
{
"targets": {
"browsers": [
"defaults"
],
"esmodules": false
}
}
],
[
"pika-plugin-unpkg-field"
],
[
"@pika/plugin-copy-assets",
{
"files": [
"readme.md"
]
}
]
]
}
}