-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·33 lines (33 loc) · 941 Bytes
/
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
{
"name": "@compit/auth-tools",
"version": "1.0.0",
"description": "A simple JWT encoding / encryption helper library",
"main": "authorizer.js",
"directories": {
"test": "test"
},
"scripts": {
"eslint": "eslint index.js libs/",
"eslint:watch": "nodemon -w test/ -w index.js -w libs/ -x 'npm run eslint'",
"test:watch": "nodemon -w test/ -w index.js -w libs/ -x 'npm run eslint && npm run test:unit'",
"pretest": "npm run eslint",
"test:unit": "mocha test/* --reporter=list",
"test:coverage": "nyc --reporter=html --reporter=text mocha test/*",
"test": "npm run test:coverage",
"posttest": "cost-of-modules"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "4.1.2",
"cost-of-modules": "1.0.1",
"eslint": "5.2.0",
"mocha": "5.2.0",
"nodemon": "1.18.3",
"nyc": "12.0.2"
},
"dependencies": {
"jsonwebtoken": "8.3.0"
}
}