-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 KB
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
{
"name": "hyperapp-lifecycle",
"version": "0.0.4",
"description": "Small wrapper for Hyperapp and Superfine to emulate connected and disconnected lifecycle events",
"main": "dist/lifecycle.js",
"module": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"test": "exit 0",
"prebuild": "npm run test",
"build": "rollup -n Lifecycle -f umd -i src/index.js -o dist/lifecycle.js",
"postbuild": "terser dist/lifecycle.js -o dist/lifecycle.js -mc --source-map includeSources,url=lifecycle.js.map",
"version": "npm run build -s",
"postversion": "git push && git push --tags && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/websemantics/hyperapp-lifecycle.git"
},
"keywords": [
"hyperapp",
"superfine",
"lifecycle"
],
"author": "Adnan M.Sagar",
"contributors": [
"Sergey Shpak (https://github.com/sergey-shpak)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/websemantics/hyperapp-lifecycle/issues"
},
"homepage": "https://github.com/websemantics/hyperapp-lifecycle#readme",
"devDependencies": {
"rollup": "^1.25.0",
"terser": "^4.3.1"
},
"peerDependencies": {
"hyperapp": "^2.0.3"
}
}