forked from Mastercard/client-encryption-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "mastercard-client-encryption",
"version": "1.1.1",
"description": "Library for Mastercard API compliant payload encryption/decryption.",
"main": "index.js",
"engines": {
"node": ">=6.12.3"
},
"scripts": {
"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 lib --ext .js",
"lint:fix": "eslint lib --ext .js --fix",
"lint:report": "npm run lint -- -f checkstyle --output-file target/checkstyle.xml",
"precommit": "lint-staged"
},
"mocha": {
"timeout": "5000"
},
"lint-staged": {
"linters": {
"*.{js,jsx,json,scss}": [
"prettier --write",
"git add"
]
}
},
"repository": {
"type": "git",
"url": "[email protected]:Mastercard/client-encryption-nodejs.git"
},
"author": "Mastercard",
"license": "MIT",
"dependencies": {
"node-forge": "^0.10.0"
},
"devDependencies": {
"eslint": "^7.7.0",
"mocha": "^8.1.3",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-mocha": "^8.0.0",
"mocha-sonar-generic-test-coverage": "0.0.6",
"nyc": "^15.1.0",
"rewire": "^5.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}