Skip to content

Commit 3b22519

Browse files
committed
Remove node_modules from project and git.
1 parent 89ffaa6 commit 3b22519

File tree

3 files changed

+9
-929
lines changed

3 files changed

+9
-929
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ logs
1212
results
1313

1414
npm-debug.log
15+
node_modules
1516

1617
## Ignore Visual Studio temporary files, build results, and
1718
## files generated by popular Visual Studio add-ons.

package.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
{
22
"name": "trello-agile-radiator",
3+
"author": "Allan Oliveira",
34
"description": "Agile burn-up chart generator",
45
"version": "0.0.1",
5-
"private": true,
6+
"engines": {
7+
"node": ">= 0.4.7"
8+
},
69
"scripts": {
7-
"start": "node app.js"
10+
"start": "node server.js"
811
},
912
"dependencies": {
1013
"express": "3.3.5",
1114
"jade": "0.35.0",
1215
"restler": "2.0.1"
16+
},
17+
"devDependencies": {
18+
"dotenv": "0.0.2"
1319
}
1420
}

0 commit comments

Comments
 (0)