forked from davgeek/clabe-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1012 Bytes
/
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
{
"name": "clabe-js",
"version": "1.0.1",
"description": "'Validate and generate the control digit of a CLABE in Mexico'",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ignore-path .gitignore .",
"test": "mocha",
"coverage": "istanbul cover _mocha",
"coveralls": "npm run coverage -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuenca-mx/clabe.js.git"
},
"author": "Cuenca/[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/cuenca-mx/clabe.js/issues"
},
"homepage": "https://github.com/cuenca-mx/clabe.js#readme",
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^6.2.0",
"eslint-config-strongloop": "^2.1.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.1.0"
},
"dependencies": {
"chai": "^4.2.0"
}
}