-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
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
{
"name": "super-tiny-wave-decoder",
"version": "0.1.2",
"description": "A super tiny WAVE parser and decoder, without any dependencies or unnecessary abstraction layers",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "babel --out-dir dist src",
"lint": "standard src/*.js",
"test": "npm run lint",
"docs": "jsdoc2md -f src/*.js -t docs/README.template.md --partial docs/templates/*.hbs --param-list-format list --heading-depth 3 > README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanderwallin/super-tiny-wave-decoder.git"
},
"keywords": [
"audio",
"decoder",
"parser",
"wave",
"riff"
],
"author": "Alexander Wallin <office@alexanderwallin.com> (http://alexanderwallin.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexanderwallin/super-tiny-wave-decoder/issues"
},
"homepage": "https://github.com/alexanderwallin/super-tiny-wave-decoder#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0",
"jsdoc-to-markdown": "^3.0.0",
"paco": "^0.4.0",
"rimraf": "^2.6.0",
"standard": "*"
}
}