-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "mithril-cc",
"version": "0.10.0",
"description": "An opinionated library for writing Mithril components",
"scripts": {
"build": "tsc && rm -rf pkg && pika-pack build && sed -i '' -e 's/global.MithrilCC = {}/global.m/' pkg/dist-umd/index.js && sed -i '' -e 's/global.Stream/global.m.stream/' pkg/dist-umd/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "echo \"Publish from npm build \""
},
"files": [
"index.js",
"index.ts",
"index.d.ts",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gilbert/mithril-cc.git"
},
"keywords": [
"mithril"
],
"author": "gilbert",
"license": "ISC",
"bugs": {
"url": "https://github.com/gilbert/mithril-cc/issues"
},
"homepage": "https://github.com/gilbert/mithril-cc#readme",
"peerDependencies": {
"mithril": "2.x"
},
"devDependencies": {
"@pika/pack": "^0.3.7",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-umd": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/mithril": "^2.0.7",
"typescript": "^4.2.3"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-umd",
{
"name": "MithrilCC",
"entrypoint": "main"
}
]
]
}
}