forked from scribbletune/scribbletune
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 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
44
45
46
47
48
49
50
51
{
"name": "scribbletune",
"version": "1.9.2",
"description": "Create music with JavaScript and Node.js!",
"main": "./src/index.js",
"scripts": {
"lint:eslint": "eslint . --color",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint": "npm run lint:eslint",
"pretest": "rm -rf coverage",
"test": "nyc tape tests/**/*.spec.js",
"build": "npx webpack",
"nuke": "rm -rf node_modules; rm package-lock.json; npm i; npm run build",
"watch": "npx webpack -d --watch",
"start": "webpack-dev-server"
},
"pre-commit": [
"build",
"test"
],
"dependencies": {
"jsmidgen": "~0.1.4",
"tonal": "^2.0.0"
},
"devDependencies": {
"eslint": "^4.0.0",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"tape": "^4.9.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"repository": {
"type": "git",
"url": "git://github.com/scribbletune/scribbletune.git"
},
"keywords": [
"javascript",
"music",
"midi"
],
"author": "Walmik Deshpande",
"license": "MIT",
"bugs": {
"url": "https://github.com/scribbletune/scribbletune/issues"
},
"engines": {
"node": ">8.x.x"
}
}