-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.61 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
77
78
79
80
81
82
83
84
{
"name": "@gulw/components",
"version": "0.8.17",
"description": "Mobile UI for Hyperapp",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib",
"es"
],
"scripts": {
"start": "parcel kitchen-sink/app.html --out-dir .ksdist --no-autoinstall --no-cache",
"pub": "npm version patch && npm publish --access=public && git push",
"build:ks": "git rm site/kitchen-sink -r && parcel build kitchen-sink/app.html -d site/kitchen-sink --public-url ./ --out-file index",
"build:es": "babel components --out-dir es && gulp es",
"build:lib": "babel components --out-dir lib --presets=@babel/preset-env && gulp lib",
"build:dist": "git rm dist/ -r && rollup -c && parcel build components/index.less --no-minify --no-source-maps --out-file f7-components.css",
"commit:ks": "git add site/kitchen-sink/ && git commit -m \"ks build\"",
"commit:dist": "git add dist/ && git commit -m \"prod build\"",
"release:ks": "npm run build:ks && npm run commit:ks && node scripts/gh-pages",
"release:prod": "npm run build:es && npm run build: lib && npm run build:dist && npm run commit:dist && npm run pub"
},
"repository": {
"type": "git",
"url": "git+https://github.com/venecy/f7c.git"
},
"keywords": [
"hyperapp",
"ui",
"views",
"components",
"mobile",
"animation"
],
"author": "gulewei",
"license": "ISC",
"bugs": {
"url": "https://github.com/venecy/f7c/issues"
},
"homepage": "https://github.com/venecy/f7c#readme",
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"iOS >= 8",
"Android >= 4.4.4"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@types/classnames": "^2.2.6",
"autoprefixer": "^9.6.0",
"eslint": "^6.0.0",
"eslint-plugin-react": "^7.14.1",
"fastclick": "^1.0.6",
"gh-pages": "^2.0.1",
"gulp": "^4.0.2",
"gulp-less": "^4.0.1",
"history": "^4.7.2",
"hyperapp": "^1.2.9",
"hyperapp-hoa-router": "^0.2.7",
"less": "^3.8.1",
"parcel-bundler": "^1.9.7",
"postcss-import": "^12.0.1",
"rollup": "^1.16.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.4"
},
"peerDependencies": {
"hyperapp": "^1.2.6"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"classnames": "^2.2.6"
}
}