forked from heroku/flow-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 788 Bytes
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 788 Bytes
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
{
"name": "node-js-sample",
"version": "0.1.0",
"description": "A sample Node.js app using Express 4",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha --reporter tap"
},
"dependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"dotenv": "^4.0.0",
"ejs": "^2.5.5",
"express": "^4.0.0",
"mocha": "^3.3.0"
},
"engines": {
"ejs": "2.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-sample"
},
"keywords": [
"node",
"heroku",
"express"
],
"author": "Mark Pundsack",
"contributors": [
"Zeke Sikelianos <zeke@sikelianos.com> (http://zeke.sikelianos.com)",
"Hector Simpson <hector@heroku.com> (http://heroku.com)"
],
"license": "MIT"
}