This repository has been archived by the owner on Nov 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "simple-card",
"version": "2.2.0",
"description": "A simple plug and play credit card validation library that uses the luhn algorithm",
"main": "dist/simple-card.min.js",
"directories": {
"test": "tests"
},
"scripts": {
"prepack": "npm-run-all build:split create build docs",
"postpack": "npm run clean",
"clean": "node scripts/clean.js",
"docs": "node scripts/docs.js",
"create": "node scripts/create-export.js",
"build": "rollup -c",
"build:split": "rollup -c rollup.split.js",
"test": "tape -r esm tests/*.js | tap-spec",
"test:cov": "nyc npm test",
"cov": "nyc --reporter=html npm test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard --fix src/*.js"
},
"nyc": {
"include": [
"src/**"
],
"exclude": [
"tests/**"
]
},
"standard": {
"ignore": [
"dist/*",
"docs.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/dhershman1/simple-card.git"
},
"keywords": [
"validation",
"simple",
"data",
"simply",
"valid",
"frontend",
"JS",
"credit card"
],
"author": "Dustin Hershman <dustinh17@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dhershman1/simple-card/issues"
},
"homepage": "https://www.dusty.codes/documentation/simple-card",
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/preset-env": "7.0.0",
"coveralls": "3.0.2",
"del": "3.0.0",
"esm": "3.0.82",
"globby": "8.0.1",
"jsdoc-to-markdown": "4.0.1",
"npm-run-all": "4.1.3",
"nyc": "13.0.1",
"rollup": "0.65.2",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-cleanup": "3.0.0",
"rollup-plugin-filesize": "4.0.1",
"rollup-plugin-uglify": "5.0.2",
"standard": "12.0.1",
"tap-spec": "5.0.0",
"tape": "4.9.1"
},
"dependencies": {
"kyanite": "0.7.0"
}
}