forked from domenic/restify-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.59 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
{
"name": "restify-oauth2",
"description": "A simple OAuth 2 endpoint for Restify",
"keywords": ["restify", "oauth", "oauth2", "rest", "authorization", "authentication", "api"],
"version": "4.0.0",
"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",
"test-cc-unit": "mocha test/cc-unit.coffee --reporter spec --compilers coffee:coffee-script",
"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": "2.x"
},
"devDependencies": {
"api-easy": "~0.3.8",
"coffee-script": "1.6.3",
"chai": "^1.9.0",
"jshint": "^2.4.4",
"mocha": "~1.17.1",
"restify": "^2.6.3",
"sinon": "^1.9.0",
"sinon-chai": "^2.5.0",
"vows": "~0.7.0"
}
}