forked from zorrock/handsfreeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.2 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
{
"name": "handsfree",
"version": "3.0.2",
"description": "A library for creating head-controlled, handsfree user interfaces via computer vision just...like...✨...that!",
"main": "dist/handsfree.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "jest --detectOpenHandles",
"deploy": "node deploy.js"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"eslintIgnore": [
"lib/models/**/*"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"testURL": "http://localhost",
"transformIgnorePatterns": [
"/public/brf/"
],
"setupFiles": [
"./test/jest-setup.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/src/",
"/public/",
"/lib/models/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test/",
"/src/",
"/public/",
"/lib/models/"
]
},
"dependencies": {
"idempotent-babel-polyfill": "^7.0.0",
"simple-keyboard": "^2.8.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-eslint": "^3.0.5",
"@vue/cli-service": "^3.0.5",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0-0",
"gsap": "^2.0.2",
"highlight.js": "^9.13.1",
"jest": "^23.6.0",
"jest-canvas-mock": "^1.1.0",
"jest-cli": "^23.6.0",
"paper": "^0.11.8",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"shelljs": "^0.8.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue": "^2.5.17",
"vue-cli-plugin-vuetify": "^0.4.5",
"vue-template-compiler": "^2.5.17",
"vuetify": "^1.3.0",
"vuetify-loader": "^1.0.5"
}
}