-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.68 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
{
"name": "angularjs-jwt",
"version": "0.0.6",
"description": "Library to help you work with JWT accessToken/refreshToken on AngularJS",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib && rimraf dist",
"test": "karma start --single-run",
"lint": "eslint src test",
"build": "webpack --config ./webpack.config.js --mode=production",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"files": [
"dist",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/l7960261/angularjs-jwt.git"
},
"keywords": [
"AngularJS",
"JWT"
],
"author": "Wilson Weng",
"license": "MIT",
"bugs": {
"url": "https://github.com/l7960261/angularjs-jwt/issues"
},
"homepage": "https://github.com/l7960261/angularjs-jwt#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"angular": "^1.7.8",
"angular-mocks": "^1.7.8",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"karma": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^6.1.3",
"rimraf": "^3.0.0",
"sinon": "^7.4.2",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8"
},
"dependencies": {
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15"
}
}