-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "audio-to-svg-waveform",
"version": "1.0.0",
"description": "Takes in an audio file and outputs a gzipped SVG waveform",
"main": "lib/index.js",
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": "airbnb/base"
},
"scripts": {
"lint": "eslint src/**",
"build": "babel --presets es2015 src -d lib",
"prepublish": "npm run build",
"start": "node lib/",
"dev": "./node_modules/.bin/babel-node src/",
"test-cov": "babel-node ./node_modules/.bin/isparta cover _mocha",
"test": "babel-node ./node_modules/.bin/_mocha"
},
"engines": {
"node": ">=8.0",
"npm": ">=5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/invokemedia/audio-to-svg-waveform.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Invoke",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.7.0",
"isparta": "^4.0.0",
"mocha": "^3.5.0"
},
"dependencies": {
"svgo": "^1.0.3",
"web-audio-api": "^0.2.2"
}
}