-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.24 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": "praise",
"version": "0.0.0",
"description": "Do stuff with voice in the browser.",
"main": "dist/praise.js",
"author": "Tejas Kumar <tejas@tejas.qa>",
"license": "MIT",
"keywords": [
"voice command",
"web speech",
"speech recognition"
],
"bugs": "tejas@tejas.qa",
"contributors": [
"Tejas Kumar <tejas@tejas.qa>"
],
"repository": {
"type": "git",
"url": "https://github.com/tejasq/praise"
},
"dependencies": {},
"scripts": {
"build": "rollup -c rollup.config.js",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"*.{ts,json}": [
"prettier --write",
"git add"
]
},
"files": [
"dist/index.js"
],
"types": "dist/index.d.ts",
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/puppeteer": "^1.3.2",
"husky": "^0.14.3",
"jest": "^23.0.0",
"lint-staged": "^7.1.2",
"prettier": "^1.12.1",
"rollup": "^0.59.3",
"rollup-plugin-typescript2": "^0.14.0",
"ts-jest": "^22.4.6",
"typescript": "^3.0.0-dev.20180526"
}
}