-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.15 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
{
"name": "handsfree",
"version": "2.1.0",
"description": "A drop-in library for adding face-controlled mouse pointers via computer vision 🙈",
"main": "dist/handsfree.js",
"files": [
"/assets/**/*",
"/dist/**/*",
"/src/**/*"
],
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack-dev-server --progress --mode development --config build/webpack.config.dev.js --open",
"build": "webpack -p --progress --mode production --config build/webpack.config.build.js",
"deploy": "node deploy.js",
"test": "jest --detectOpenHandles"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"testURL": "http://localhost",
"setupFiles": [
"./test/jest-setup.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/sandbox/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test/",
"/sandbox/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/labofoz/browsehandsfree.git"
},
"author": "Labofoz <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/labofoz/browsehandsfree/issues"
},
"homepage": "https://github.com/labofoz/browsehandsfree#readme",
"devDependencies": {
"arraybuffer-loader": "^1.0.7",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"highlight.js": "^9.13.1",
"html-webpack-plugin": "^3.2.0",
"ify-loader": "^1.1.0",
"jest-canvas-mock": "^1.1.0",
"jest-cli": "^23.5.0",
"paper": "^0.11.8",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"shelljs": "^0.8.2",
"spectre.css": "^0.5.3",
"style-loader": "^0.22.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"idempotent-babel-polyfill": "^6.26.0-1",
"simple-keyboard": "^2.6.7"
}
}