-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 908 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
{
"name": "card-validator-lib",
"version": "1.0.0",
"description": "Esta biblioteca se destina à validação de cartão de crédito, utilizando o algoritmo de [Luhn](https://en.wikipedia.org/wiki/Luhn_algorithm) para uso em aplicações desenvolvidas em JavaScript.",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"nyc": "^14.1.0"
},
"scripts": {
"test": "nyc mocha",
"eslint": "eslint ./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marinatuji/card-validator-lib.git"
},
"author": "Marina Tuji",
"license": "ISC",
"bugs": {
"url": "https://github.com/marinatuji/card-validator-lib/issues"
},
"homepage": "https://github.com/marinatuji/card-validator-lib#readme"
}