forked from framework7io/framework7-plugin-keypad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.12 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
{
"name": "framework7-plugin-keypad",
"version": "3.0.1",
"description": "Keypad plugin extends Framework7 with additional custom keyboards",
"main": "dist/framework7-keypad.js",
"jsnext:main": "dist/framework7-keypad.esm.js",
"module": "dist/framework7-keypad.esm.js",
"scripts": {
"copy-f7": "cpy node_modules/framework7/js/*.* demo/framework7/js && cpy node_modules/framework7/css/*.* demo/framework7/css",
"build:dev": "cross-env NODE_ENV=development gulp build",
"build:prod": "cross-env NODE_ENV=production gulp build",
"dev": "npm run copy-f7 && cross-env NODE_ENV=development gulp build && cross-env NODE_ENV=development gulp demo && cross-env NODE_ENV=development gulp server",
"prod": "npm run copy-f7 && cross-env NODE_ENV=production gulp demo && cross-env NODE_ENV=production gulp server",
"lint": "eslint .",
"test": "npm run build:dev && eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/framework7io/framework7-plugin-keypad.git"
},
"keywords": [
"mobile",
"framework",
"ios 7",
"ios7",
"ios8",
"ios 8",
"iphone",
"ipad",
"apple",
"phonegap",
"native",
"touch",
"appstore",
"app",
"f7"
],
"author": "Vladimir Kharlampidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/framework7io/framework7-plugin-keypad/issues"
},
"homepage": "http://framework7.io/plugins/",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"acorn": "^7.1.0",
"cpy-cli": "^2.0.0",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"framework7": "^5.0.5",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean-css": "^4.2.0",
"gulp-connect": "^5.7.0",
"gulp-header": "^2.0.9",
"gulp-less": "^4.0.1",
"gulp-open": "^3.0.1",
"gulp-rename": "^1.4.0",
"rollup": "^1.24.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"terser": "^4.3.9"
}
}