-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "tonal.notation-tools",
"version": "0.0.0",
"private": "true",
"description": "The javascript music notation",
"main": "lib/index.js",
"scripts": {
"build": "cp README.md lib/ && npm run docs && npm run dist && npm run disc && npm run coverage",
"test": "vows --spec test/*.js",
"docs": "documentation -f md > API.md",
"dist": "browserify lib/index.js | uglifyjs > dist/notation.min.js&& ls -hall dist/",
"disc": "browserify --full-paths lib/index.js | uglifyjs | discify > dist/disc.html",
"coverage": "istanbul cover vows test/*.js",
"cover": "npm run coverage && open ./coverage/lcov-report/index.html",
"climate": "npm run coverage && npm run codeclimate",
"codeclimate": "CODECLIMATE_REPO_TOKEN= codeclimate-test-reporter < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danigb/tonal.notation.git"
},
"keywords": [
"music",
"notation",
"parser",
"tonal"
],
"author": "danigb",
"license": "MIT",
"bugs": {
"url": "https://github.com/danigb/tonal.notation/issues"
},
"homepage": "https://github.com/danigb/tonal.notation#readme",
"devDependencies": {
"vows": "^0.8.x"
},
"dependencies": {
}
}