-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.14 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
{
"name": "hyperapp-hoa-router",
"version": "0.2.7",
"description": "another router with hoa function for hyperapp",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"src",
"dist",
"lib",
"es"
],
"scripts": {
"start": "parcel demo/index.html --out-dir .edist --no-autoinstall --no-cache",
"build:demo": "git rm docs/demo -r && parcel build demo/index.html -d docs/demo --public-url ./ --out-file index",
"release:demo": "npm run build:demo && git add docs/demo && git commit -m\"demo build\" && git push",
"commit:dist": "git add dist/ && git commit -m\"dist build\"",
"build:dist": "git rm dist/ -r && rollup -c && uglifyjs dist/hoa-router.js -c -m -o dist/hoa-router.min.js",
"build:lib": "npx babel src --out-dir lib && npx babel src --out-dir lib --copy-files",
"release": "npm run build:dist && npm run commit:dist && npm run build:lib && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/venecy/router.git"
},
"keywords": [
"hyperapp",
"router",
"hoa"
],
"author": "gulewei",
"license": "ISC",
"bugs": {
"url": "https://github.com/venecy/router/issues"
},
"homepage": "https://github.com/venecy/router#readme",
"peerDependencies": {
"history": "^4.7.2",
"hyperapp": "^1.2.6"
},
"devDependencies": {
"@gulw/components": "^0.8.9",
"@types/history": "^4.7.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"history": "^4.7.2",
"hyperapp": "^1.2.8",
"rollup": "^0.50.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.0.3",
"uglify-js": "^3.4.9"
},
"dependencies": {
"babel-runtime": "^6.26.0"
}
}