-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.8 KB
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
65
66
67
68
69
70
{
"name": "mastercard-client-encryption",
"version": "1.10.8",
"description": "Library for Mastercard API compliant payload encryption/decryption.",
"main": "index.js",
"engines": {
"node": ">=6.12.3"
},
"scripts": {
"build": "webpack",
"test": "mocha && mocha --reporter mocha-sonar-generic-test-coverage > test-results.xml",
"coverage": "nyc mocha && nyc report --reporter=text-lcov > .nyc_output/coverage.lcov",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:report": "npm run lint -- -f eslint-formatter-checkstyle --output-file target/checkstyle.xml",
"format:check": "prettier --check \"**/*.js\"",
"format:fix": "prettier --write \"**/*.js\"",
"precommit": "lint-staged"
},
"mocha": {
"timeout": "5000"
},
"lint-staged": {
"linters": {
"*.{js,jsx,json,scss}": [
"prettier --write",
"git add"
]
}
},
"repository": {
"type": "git",
"url": "git@github.com:Mastercard/client-encryption-nodejs.git"
},
"author": "Mastercard",
"license": "MIT",
"dependencies": {
"node-forge": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-checkstyle": "^9.0.1",
"eslint-plugin-mocha": "^11.3.0",
"globals": "^17.7.0",
"mocha": "^10.7.3",
"mocha-sonar-generic-test-coverage": "^0.0.1",
"nyc": "^18.0.0",
"prettier": "^3.9.4",
"rewire": "^9.0.0",
"webpack": "^5.108.3",
"webpack-cli": "^7.1.0"
},
"overrides": {
"serialize-javascript": ">=7.0.3",
"fast-uri": ">=3.1.1",
"js-yaml": ">=4.2.0",
"uuid": ">=11.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"lib",
"index.js",
"README.md",
"LICENSE"
]
}