-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 921 Bytes
/
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
{
"name": "play-dtmf",
"version": "3.0.2",
"description": "A simple library to play DTMF tones using Web Audio API",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib karma.conf.cjs",
"prepare": "rimraf lib && tsc",
"test": "karma start karma.conf.cjs"
},
"keywords": [
"dtmf",
"audio"
],
"author": "Andrés Souto",
"license": "ISC",
"type": "module",
"files": [
"lib",
"src"
],
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"eslint": "^8.45.0",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
}
}