-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
40
41
42
43
44
45
46
47
{
"name": "endpoints-example",
"description": "an example api written using endpoints",
"homepage": "https://github.com/endpoints/example",
"author": {
"name": "Tyler Kellen",
"url": "http://goingslowly.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/endpoints/example.git"
},
"bugs": {
"url": "https://github.com/endpoints/example/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/endpoints/example/blob/master/LICENSE"
}
],
"main": "index.js",
"engines": {
"node": ">= 0.10"
},
"scripts": {
"start": "node index",
"test": "npm run lint && mocha -R spec",
"lint": "jshint index.js lib"
},
"dependencies": {
"bluebird": "^2.9.13",
"body-parser": "^1.10.0",
"bookshelf": "^0.8.1",
"cli-table": "^0.3.1",
"cors": "^2.5.2",
"endpoints": "^0.9.0",
"express": "^4.10.6",
"express-routebuilder": "^2.1.0",
"fantasy-database": "endpoints/fantasy-database#master",
"knex": "^0.8.6",
"sqlite3": "^3.0.4"
},
"devDependencies": {
"jshint": "^2.5.11"
}
}