-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "sails-api-jwt",
"private": false,
"version": "1.2.1",
"description": "An example implementation of JWT-based API for user registration and authorization.",
"keywords": [
"Sails",
"Sails.js",
"JWT",
"JSON Web Token",
"authorization",
"API"
],
"dependencies": {
"bcrypt": "^2.0.0",
"farmhash": "^2.0.4",
"include-all": "^4.0.3",
"jsonwebtoken": "^8.1.0",
"mailgun-js": "^0.17.0",
"moment": "^2.19.3",
"password-validator": "^4.0.0",
"rc": "^1.2.2",
"sails": "^0.12.14",
"sails-disk": "^0.10.10",
"shortid": "^2.2.8",
"validator": "^9.1.2"
},
"scripts": {
"debug": "node debug app.js",
"start": "node app.js",
"test": "nyc mocha --ui bdd test/*.test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/Deliaz/sails-api-jwt.git"
},
"author": "deliaz",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.12.1",
"mocha": "^5.0.0",
"mock-require": "^3.0.0",
"nyc": "^11.4.0",
"sinon": "^4.1.3",
"sinon-chai": "^3.0.0"
},
"nyc": {
"exclude": [
"config",
"test",
"api/responses"
],
"reporter": [
"html",
"text"
]
}
}