-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.32 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
53
54
{
"name": "character",
"version": "1.0.0-alpha-1",
"description": "Authentication, SSO, user management, and overall identity solution for Node.js",
"scripts": {
"build": "depcheck && nsp check && npm run lint && npm test && echo Build successful",
"lint": "eslint --format=table .",
"prepublish": "npm run build",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HiFaraz/character.git"
},
"keywords": [
"auth",
"identity",
"sso",
"authentication",
"authorization",
"access",
"control"
],
"author": "Faraz Syed <hello@farazsyed.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HiFaraz/character/issues"
},
"homepage": "http://characterjs.com/",
"devDependencies": {
"body-parser": "^1.18.2",
"depcheck": "^0.6.8",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-prettier": "^2.3.1",
"express": "^4.0.0",
"mocha": "^4.0.1",
"nsp": "^2.8.1",
"prettier": "^1.7.4",
"proxyquire": "^1.8.0",
"supertest": "^3.0.0"
},
"dependencies": {
"capitalize": "^1.0.0",
"debug": "^3.0.0",
"lodash": "^4.0.0",
"read-data": "^1.1.0"
},
"peerDependencies": {
"body-parser": "^1.18.2",
"express": "^4.0.0",
"sequelize": "^4.0.0"
}
}