chore(package.json): add simple package.json with npm dependencies

This commit is contained in:
Igor Minar 2012-05-22 23:39:07 -07:00
parent 4511d39cc7
commit 5214c1d0cb
2 changed files with 10 additions and 1 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash
if [ ! -e gen_docs.disable ]; then
jasmine-node docs/spec --noColor && node docs/src/gen-docs.js
./node_modules/.bin/jasmine-node docs/spec --noColor && node docs/src/gen-docs.js
fi

9
package.json Normal file
View file

@ -0,0 +1,9 @@
{
"name": "AngularJS",
"version": "0.0.0",
"dependencies" : {
"jasmine-node" : "*",
"q-fs" : "*",
"qq" : "*"
}
}