-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 842 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 842 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
37
{
"name": "skylith",
"version": "0.0.3",
"description": "NodeJS-based OpenID 2.0 Provider",
"author": "Danny Yates <danny@codeaholics.org>",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "skylith.js",
"scripts": {
"test": "NODE_ENV=test mocha",
"coverage": "NODE_ENV=test istanbul cover _mocha"
},
"repository": "https://github.com/codeaholics/skylith.git",
"keywords": [
"openid",
"provider"
],
"bugs": {
"url": "https://github.com/codeaholics/skylith/issues"
},
"devDependencies": {
"mocha": "~1.12.1",
"chai": "~1.7.2",
"express": "~3.4.7",
"supertest": "~0.9.0",
"cheerio": "~0.13.1",
"istanbul": "~0.2.4"
},
"dependencies": {
"valid-url": "~1.0.9",
"uri-js": "~1.4.2"
}
}