forked from icebob/vue-touch-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.29 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "vue-touch-keyboard",
"version": "0.3.2",
"description": "Virtual keyboard component for Vue.js",
"homepage": "https://github.com/icebob/vue-touch-keyboard",
"main": "dist/vue-touch-keyboard.js",
"scripts": {
"prebuild": "npm run test",
"build": "webpack --progress --config webpack.build.config.js",
"dev": "webpack-dev-server --config webpack.dev.config.js --inline --hot --content-base dev/",
"lint": "eslint --ext=.js,.vue src test/unit/specs",
"deps": "npm-check -u",
"coverall": "cat ./test/unit/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "npm run test && npm run coverall",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"docs": "cd docs && gitbook serve",
"unit": "karma start test/unit/karma.conf.js",
"e2e": "node test/e2e/runner.js",
"pretest": "npm run lint",
"test": "npm run unit",
"ci": "karma start test/unit/karma.conf.js --auto-watch --no-single-run --reporters=dots --port=9877"
},
"keywords": [
"vue",
"vuejs",
"form",
"generator",
"schema",
"json"
],
"repository": {
"type": "git",
"url": "https://github.com/icebob/vue-touch-keyboard.git"
},
"files": [
"dist/vue-touch-keyboard.js",
"dist/vue-touch-keyboard.css",
"src"
],
"author": "Icebob",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "6.3.2",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "3.5.0",
"conventional-changelog-cli": "1.2.0",
"conventional-github-releaser": "1.1.3",
"coveralls": "2.11.16",
"css-loader": "0.26.2",
"eslint": "3.16.1",
"eslint-friendly-formatter": "2.0.7",
"eslint-loader": "1.6.3",
"eslint-plugin-html": "2.0.1",
"eslint-plugin-vue": "2.0.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.10.1",
"git-commit-message-convention": "git://github.com/kazupon/git-commit-message-convention.git#065dfffbe2de5f6f16150aac9d4db7fdf5515e56",
"inject-loader": "2.0.1",
"isparta-loader": "2.0.0",
"jade": "1.11.0",
"jade-loader": "0.8.0",
"karma": "1.3.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "1.0.1",
"karma-coverage": "^1.1.2",
"karma-coveralls": "1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "1.2.4",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "1.8.0",
"lodash": "^4.17.14",
"lolex": "1.6.0",
"mocha": "2.5.3",
"mocha-generators": "1.2.0",
"mocha-loader": "0.7.1",
"node-sass": "^4.12.0",
"npm-check": "^5.9.0",
"phantomjs-prebuilt": "^2.1.16",
"sass-loader": "3.2.0",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"stats-webpack-plugin": "0.4.3",
"style-loader": "0.13.2",
"url-loader": "0.5.8",
"vue": "^2.6.10",
"vue-hot-reload-api": "^2.3.3",
"vue-html-loader": "1.2.4",
"vue-loader": "11.1.3",
"vue-style-loader": "2.0.3",
"vue-template-compiler": "^2.6.10",
"webpack": "1.13.2",
"webpack-dev-middleware": "1.10.1",
"webpack-dev-server": "1.16.1",
"webpack-merge": "0.14.1"
},
"dependencies": {
"babel-runtime": "^6.26.0"
}
}