forked from tadas-s/isbnjs
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
82 lines (82 loc) · 1.7 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
80
81
82
{
"name": "isbn3",
"description": "ISBN utils: parse, validate, format, audit",
"version": "1.2.6",
"authors": [
"Hetappi <[email protected]>",
"Tadas S. <[email protected]>",
"Maxime L. <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/inventaire/isbn3",
"repository": {
"type": "git",
"url": "git://github.com/inventaire/isbn3.git"
},
"main": "./isbn.js",
"bin": {
"isbn": "./bin/isbn",
"isbn-audit": "./bin/isbn-audit",
"isbn-checksum": "./bin/isbn-checksum"
},
"scripts": {
"test": "mocha",
"lint": "standard",
"update-groups": "./scripts/update_groups.js",
"update-dist": "./scripts/update_dist.sh",
"update-toc": "./scripts/update_toc.sh",
"benchmark": "./benchmark/run.js",
"prepublishOnly": "./scripts/prepublish.sh",
"postpublish": "./scripts/postpublish.sh"
},
"files": [
"isbn.js",
"isbn.d.ts",
"lib",
"bin",
"scripts"
],
"types": "isbn.d.ts",
"engines": {
"node": ">= 6.4.0"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.5.0",
"mocha": "^6.2.1",
"node-fetch": "^2.6.0",
"should": "^13.2.3",
"standard": "^10.0.2",
"uglify-js": "^3.6.1",
"xml2js": "^0.4.16"
},
"standard": {
"ignore": [
"dist"
],
"globals": [
"it",
"describe"
]
},
"bugs": {
"url": "https://github.com/inventaire/isbn3/issues"
},
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"ISBN",
"ISBN 10",
"ISBN 13",
"parser",
"parse",
"audit",
"publisher",
"checksum"
]
}