Skip to content

Commit 6d5aa79

Browse files
committed
put dependencies into package.json
1 parent 2997768 commit 6d5aa79

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ First install Node:
3737
$ brew install node (on OSX)
3838
$ sudo apt-get install node (on Linux)
3939

40-
Then install CoffeScript and Jison. Do this from the root VexTab directory so it creates a sub-directory called `node-modules`.
40+
Then install the depdencies managed in the `package.json`:
4141

42-
$ npm install jison coffee-script
42+
$ npm install
4343

4444
Next, install Ruby and the `bundler` gem. Then install all the dependencies
4545
by typing:

package.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "vextab",
3+
"version": "2.0.0",
4+
"author": "Muthanna Cheppudira",
5+
"description": "A VexTab Parser for VexFlow",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/0xfe/vextab.git"
9+
},
10+
"licence": "MIT",
11+
"devDependencies": {
12+
"coffee-script": "*",
13+
"jison": "*"
14+
}
15+
}

0 commit comments

Comments
 (0)