forked from codeaholics/skylith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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": "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": "./src/OpenIDProvider.js",
"scripts": {
"test": "_mocha --reporter tap './test/**/*.spec.js'",
"test-cover": "nyc npm test",
"build": "echo 'this project has no build'; exit 0;",
"lint": "eslint --ignore-path .gitignore '**/*.js'",
"precommit": "npm run lint",
"prepush": "npm run test",
"preversion": "npm run lint && npm run test && npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"repository": "https://github.com/codeaholics/skylith.git",
"keywords": [
"openid",
"provider"
],
"devDependencies": {
"body-parser": "^1.17.2",
"chai": "^4.1.0",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "^1.4.3",
"eslint": "^4.3.0",
"express": "^4.15.3",
"husky": "^0.14.3",
"mocha": "^3.5.0",
"mol-conventional-changelog": "^1.2.0",
"nyc": "^11.1.0",
"supertest": "^3.0.0"
},
"dependencies": {
"eslint-config-mailonline": "^7.1.0",
"uri-js": "~1.4.2",
"url": "^0.11.0",
"valid-url": "~1.0.9"
},
"config": {
"commitizen": {
"path": "./node_modules/mol-conventional-changelog"
}
}
}