-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "easy-speech",
"version": "1.0.0",
"description": "Cross browser Speech Synthesis",
"type": "module",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'tests/**/*.tests.js'",
"test-debug": "NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk 'tests/**/*.tests.js'",
"test:coverage": "NODE_ENV=test c8 --all --reporter=html --reporter=text ./node_modules/.bin/mocha 'tests/**/*.tests.js'",
"lint": "standard ./index.js | snazzy",
"lint:fix": "standard ./index.js --fix | snazzy",
"docs:api": "jsdoc2md index.js > API.md",
"docs:html": "rollup index.js --format iife --name \"EasySpeech\" --file docs/bundle.js --compact --no-sourcemap",
"prepublish": "npm run lint && npm run test && npm run docs:api && npm run docs:html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jankapunkt/easy-speech.git"
},
"keywords": [
"webspeech",
"speechsynthesis",
"browser",
"web",
"standards"
],
"author": "Jan Küster <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jankapunkt/easy-speech/issues"
},
"homepage": "https://github.com/jankapunkt/easy-speech#readme",
"devDependencies": {
"c8": "^7.10.0",
"chai": "^4.3.4",
"jsdoc-to-markdown": "^7.1.0",
"mocha": "^9.1.3",
"rollup": "^2.60.2",
"sinon": "^12.0.1",
"snazzy": "^9.0.0",
"standard": "^16.0.4"
},
"funding": {
"type": "PayPal",
"url": "https://paypal.me/kuesterjan"
},
"engines": {
"node": ">= 14.x"
},
"files": [
"index.js",
"API.md"
]
}