-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
48 lines (48 loc) · 1.53 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
{
"name": "restify-oauth2",
"description": "A simple OAuth 2 endpoint for Restify",
"keywords": [
"restify",
"oauth",
"oauth2",
"rest",
"authorization",
"authentication",
"api"
],
"version": "4.0.4",
"author": "Domenic Denicola <[email protected]> (http://domenic.me/)",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "git://github.com/domenic/restify-oauth2.git"
},
"bugs": "http://github.com/domenic/restify-oauth2/issues",
"main": "lib/index.js",
"scripts": {
"test": "npm run test-ropc-unit && npm run test-cc-unit && npm run test-ropc-integration && npm run test-cc-integration && npm run test-cc-with-scopes-integration",
"test-ropc-unit": "mocha test/ropc-unit.coffee --reporter spec --compilers coffee:coffee-script/register",
"test-cc-unit": "mocha test/cc-unit.coffee --reporter spec --compilers coffee:coffee-script/register",
"test-ropc-integration": "vows test/ropc-integration.coffee --spec",
"test-cc-integration": "vows test/cc-integration.coffee --spec",
"test-cc-with-scopes-integration": "vows test/cc-with-scopes-integration.coffee --spec",
"lint": "jshint lib && jshint examples"
},
"dependencies": {
"underscore": "1.x"
},
"peerDependencies": {
"restify": "4.x"
},
"devDependencies": {
"api-easy": "^0.4.0",
"chai": "^3.2.0",
"coffee-script": "^1.9.3",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"restify": "^4.0",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"vows": "^0.8.1"
}
}