-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "tokenpress",
"version": "2.3.0",
"description": "A JWT utility belt for JavaScript applications",
"main": "index.js",
"repository": "https://github.com/justinsisley/tokenpress",
"scripts": {
"build": "babel ./lib/browser.js --out-file browser.js",
"prepare": "npm run build",
"lint": "eslint --fix ./lib",
"test": "jest --testURL=http://localhost",
"commit": "dutchie --commit",
"release": "dutchie --release"
},
"author": "Justin Sisley",
"license": "MIT",
"dependencies": {
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.6.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"dutchie": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^24.9.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"extends": "airbnb-base",
"globals": {
"expect": true,
"describe": true,
"it": true,
"window": true
}
}
}