-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
74 lines (74 loc) · 1.96 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
{
"name": "alawmulaw",
"version": "6.0.0",
"description": "A-Law and mu-Law codecs in JavaScript.",
"homepage": "https://github.com/rochars/alawmulaw",
"author": "Rafael da Silva Rocha <rocha.rafaelsilva@gmail.com>",
"license": "MIT",
"main": "./dist/alawmulaw.js",
"module": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=8"
},
"keywords": [
"A-Law",
"mu-Law",
"audio",
"codec",
"encode",
"decode",
"compander",
"companding",
"PCM",
"streaming"
],
"repository": {
"type": "git",
"url": "git://github.com/rochars/alawmulaw.git"
},
"bugs": {
"url": "https://github.com/rochars/alawmulaw/issues"
},
"directories": {
"dist": "dist",
"externs": "externs",
"lib": "lib"
},
"files": [
"dist",
"externs",
"lib",
"index.js",
"index.d.ts",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"lint": "jshint index.js lib",
"test": "nyc ./node_modules/mocha/bin/_mocha test/src --recursive -R dot",
"test-umd": "node ./node_modules/mocha/bin/_mocha test/src --umd --recursive -R dot",
"test-tsc": "tsc ./test/dist/TypeScript/main.ts && node -r esm ./test/dist/TypeScript/main.js",
"test-dist": "npm run test-umd && npm run test-tsc",
"pack": "npm run test && rollup -c && npm run test-dist",
"doc": "./node_modules/.bin/jsdoc -c .jsdocrc index.js lib -d docs -r README.md -t node_modules/docdash",
"build": "npm run lint && npm run pack && npm run doc",
"coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.13.0",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"docdash": "^1.1.1",
"esm": "^3.2.25",
"jsdoc": "^3.6.3",
"jshint": "^2.10.3",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"rollup": "^1.27.14",
"typescript": "^3.7.4"
},
"dependencies": {}
}