forked from Mastercard/client-encryption-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "mastercard-client-encryption",
"version": "1.0.3",
"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"
},
"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.8.2"
},
"devDependencies": {
"eslint": "^5.13.0",
"mocha": "^5.2.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-mocha": "^5.3.0",
"mocha-sonar-generic-test-coverage": "0.0.6",
"nyc": "^13.2.0",
"rewire": "^4.0.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}