-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
48
49
50
51
52
{
"name": "ak-api",
"version": "0.2.0",
"description": "async-kit API server toolkit",
"main": "index.js",
"scripts": {
"test": "mocha spec",
"lint": "./node_modules/.bin/eslint . ./"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/async-kit/ak-api.git"
},
"keywords": [
"REST",
"api",
"http",
"restify",
"oauth2",
"acl"
],
"author": "Jonathan M. Altman",
"license": "MIT",
"bugs": {
"url": "https://github.com/async-kit/ak-api/issues"
},
"homepage": "https://github.com/async-kit/ak-api#readme",
"devDependencies": {
"babel-eslint": "^6.0.4",
"chai": "^3.5.0",
"eslint": "^2.10.2",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-filenames": "^0.2.0",
"mocha": "^2.4.5",
"passport-local": "^1.0.0",
"passport-localapikey": "0.0.3",
"sqlite3": "^3.1.4"
},
"dependencies": {
"bcrypt": "^0.8.6",
"bunyan": "^1.8.1",
"glob": "^6.0.4",
"highland": "^2.6.0",
"json-stream-response": "^1.0.2",
"jsonwebtoken": "^6.2.0",
"lodash": "^4.12.0",
"oauth2orize": "^1.2.2"
},
"peerDependencies": {
"restify": "^4.0.3"
}
}