UNPKG

1.44 kBJSONView Raw
1{
2 "name": "alawmulaw",
3 "version": "1.1.0",
4 "description": "JavaScript A-Law and mu-Law codecs.",
5 "homepage": "https://github.com/rochars/alawmulaw",
6 "author": "Rafael da Silva Rocha <rocha.rafaelsilva@gmail.com>",
7 "license": "MIT",
8 "keywords": [
9 "wav",
10 "A-Law",
11 "mu-Law",
12 "audio",
13 "codec",
14 "encode",
15 "decode",
16 "compander",
17 "companding",
18 "PCM",
19 "file",
20 "streaming"
21 ],
22 "repository": {
23 "type": "git",
24 "url": "git://github.com/rochars/alawmulaw.git"
25 },
26 "scripts": {
27 "lint": "jshint index.js",
28 "test": "nyc ./node_modules/mocha/bin/_mocha --recursive",
29 "coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
30 "bundle": "webpack",
31 "compile": "google-closure-compiler-js dist/alawmulaw.js > dist/alawmulaw-min.js",
32 "doc": "./node_modules/.bin/jsdoc index.js src -d docs -r README.md -t node_modules/docdash",
33 "qa": "npm run lint && npm run test",
34 "pack": "npm run bundle && npm run compile && npm run doc",
35 "build": "npm run qa && npm run pack"
36 },
37 "devDependencies": {
38 "codecov": "^3.0.0",
39 "docdash": "^0.4.0",
40 "google-closure-compiler-js": "^20170910.0.1",
41 "jsdoc": "~3.5.5",
42 "jshint": "^2.9.5",
43 "mocha": "^3.5.3",
44 "mocha-lcov-reporter": "^1.3.0",
45 "nyc": "^3.2.2",
46 "string-replace-loader": "^1.3.0",
47 "webpack": "^3.8.1"
48 },
49 "main": "index.js",
50 "dependencies": {}
51}