forked from GoogleChromeLabs/dictation_support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "dictation_support",
"version": "1.0.4",
"description": "SDK to interact with dictation devices",
"scripts": {
"build": "rimraf dist && npx webpack --config=webpack.config.js",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"format": "git clang-format",
"formatCheck": "git clang-format --diff",
"prepare": "husky install",
"test": "karma start karma.unit.js"
},
"author": "hendrich@google.com",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist/index.js",
"/dist/index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/GoogleChromeLabs/dictation_support.git"
},
"devDependencies": {
"@types/jasmine": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"clang-format": "^1.8.0",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"jasmine": "^4.3.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-cli": "^2.0.0",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.34",
"karma-webpack": "^5.0.0",
"prettier": "^2.7.1",
"puppeteer": "^17.0.0",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"typescript": "~4.7.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@types/w3c-web-hid": "^1.0.3"
}
}