-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2 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
{
"name": "func-midi-visualizer",
"version": "3.1.2",
"description": "A functional-based visualizer for midi data, syncrhonized with audio file",
"engines": {
"node": ">=6.0.0"
},
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"preinstall": "if test -d ./.git && test ! -h ./.git/hooks/commit-msg; then ln -s ./scripts/commit-msg ./.git/hooks/commit-msg; fi;",
"clean": "rm -Rf ./coverage",
"lint": "./node_modules/eslint/bin/eslint.js src",
"test": "./node_modules/mocha/bin/mocha test",
"ci-coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"local-coverage": "npm run clean && ./node_modules/istanbul/lib/cli.js cover _mocha test/**.spec.js",
"doc": "./node_modules/jsdoc-to-markdown/bin/cli.js --template jsdoc.template.hbs 'src/**/*.js'> README.md",
"check-deps": "./node_modules/npm-check-updates/bin/ncu -e 2",
"update-deps": "./node_modules/npm-check-updates/bin/ncu -u -a"
},
"repository": {
"type": "git",
"url": "https://github.com/edhille/midi-visualizer.git"
},
"keywords": [
"JavaScript",
"Midi",
"Visualization",
"Functional"
],
"author": "Ted Hille",
"license": "MIT",
"bugs": {
"url": "https://github.com/edhille/midi-visualizer/issues"
},
"homepage": "https://github.com/edhille/midi-visualizer",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"del": "^4.0.0",
"eslint": "^5.16.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^6.1.3",
"npm-check-updates": "^3.1.3",
"rewire": "^4.0.1",
"sinon": "^7.3.1",
"through2": "^3.0.1"
},
"dependencies": {
"d3": "^5.9.2",
"fadt": "^2.2.4",
"func-midi-parser": "^2.1.3",
"funtils": "^0.5.0",
"graceful-readlink": "^1.0.1",
"lodash": "^4.17.11",
"three": "^0.103.0"
}
}