-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.7 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
{
"name": "jwt-token-encrypt",
"version": "1.0.4",
"readmeFilename": "README.md",
"description": "Encrypt part of JWT to hide sensitive data.",
"repository": {
"type": "git",
"url": "https://github.com/kmokrzycki/jwt-token-encrypt.git"
},
"author": "SirK79",
"email": "[email protected]",
"license": "MIT",
"keywords": [
"jwt-token-encrypt",
"jwt-token-encrypted",
"jwt",
"json web token",
"encryption",
"encrypted web token",
"encrypt web token",
"crypt web token"
],
"scripts": {
"clean": "rimraf dist && rimraf compiled",
"babel": "babel --ignore node_modules,tests",
"build:component": "npm run lint && npm run babel -- ./src -d ./compiled && npm run test",
"build": "npm run clean && npm run lintfix && npm run build:component",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"test": "./node_modules/.bin/mocha --recursive ./tests/ --compilers js:babel-core/register",
"test:coverage": "nyc --reporter=lcov --reporter=text ./node_modules/.bin/mocha --recursive --require babel-register ./tests/",
"test:watch": "npm test -- --watch"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.19.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"mocha": "^5.0.4",
"nyc": "^11.6.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"jsonwebtoken": "^8.1.0",
"object-path": "^0.11.4"
}
}