-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
{
"name": "mp3-to-svg",
"version": "2.1.0",
"description": "Takes in an audio file and outputs a SVG waveform",
"main": "dist/index.js",
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-async-to-generator"
]
},
"eslintConfig": {
"extends": "airbnb/base"
},
"scripts": {
"requirements-check": "node check-version.js",
"postinstall": "npm run requirements-check",
"prepare": "npm run build",
"lint": "eslint src/**",
"build": "babel --presets es2015 src -d dist",
"start": "node dist/cli",
"dev": "./node_modules/.bin/babel-node src/cli",
"test-cov": "babel-node ./node_modules/.bin/isparta cover _mocha",
"test-dev": "babel-node ./node_modules/.bin/_mocha spec/*spec.js --watch",
"test": "mkdir -p tmp && babel-node ./node_modules/.bin/_mocha spec/*spec.js"
},
"bin": {
"mp3-to-svg": "./dist/cli.js"
},
"engines": {
"node": "~>16",
"npm": "~>8"
},
"repository": {
"type": "git",
"url": "https://github.com/kdgm/mp3-to-svg.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Wouter Bin",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"eslint": ">=5",
"eslint-config-airbnb": ">=1",
"eslint-config-airbnb-base": ">=1",
"eslint-plugin-import": ">=2",
"glob": "^7.1.3",
"isparta": "^4.0.0",
"mocha": "^3.5.0"
},
"dependencies": {
"rimraf": "^2.6.1",
"semver": "^7.3.8",
"svgo": "^1.0.3"
}
}