-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
88 lines (88 loc) · 2.39 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
{
"name": "easy-speech",
"version": "2.4.0",
"description": "Cross browser Speech Synthesis",
"type": "module",
"main": "./dist/EasySpeech.cjs.js",
"browser": "./dist/EasySpeech.iife.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/EasySpeech.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/EasySpeech.cjs.js"
}
}
},
"types": "./dist/index.d.ts",
"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 --include=src/EasySpeech.js --reporter=html --reporter=text ./node_modules/.bin/mocha 'tests/**/*.tests.js'",
"lint": "standard . | snazzy",
"lint:fix": "standard . --fix | snazzy",
"prepublish": "npm run lint && npm run test && npm run build && npm run build:docs",
"build:docs": "jsdoc2md src/EasySpeech.js > API.md",
"build:demo": "rm docs/demo.js && rollup --config rollup.demo.config.js",
"build": "rollup --config rollup.dist.config.js"
},
"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": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-terser": "^0.4.4",
"c8": "^8.0.0",
"chai": "^5.1.0",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.2.0",
"rollup": "^4.3.0",
"rollup-plugin-copy": "^3.5.0",
"sinon": "^19.0.2",
"snazzy": "^9.0.0",
"standard": "17.1.2"
},
"funding": [{
"type": "GitHub",
"url": "https://github.com/sponsors/jankapunkt"
},{
"type": "PayPal",
"url": "https://paypal.me/kuesterjan"
}],
"engines": {
"node": ">= 14.x"
},
"files": [
"dist",
"API.md",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"standard": {
"ignore": [
"dist",
"docs"
]
}
}