-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "isbn-info",
"version": "2.2.4",
"description": "Console tools to identify books by their ISBN and output formatted metadata.",
"repository": {
"type": "git",
"url": "https://github.com/infojunkie/isbn-info"
},
"bin": {
"isbn-format": "./lib/isbn-format.js",
"isbn-detect": "./lib/isbn-detect.js",
"isbn-extract": "./src/isbn-extract.sh",
"isbn-bulk-rename": "./src/isbn-bulk-rename.sh"
},
"type": "module",
"scripts": {
"test": "mocha --require @babel/register",
"build": "babel src -d lib"
},
"author": "Karim Ratib <[email protected]> (https://github.com/infojunkie)",
"license": "GPL-3.0-only",
"files": [
"LICENSE.txt",
"lib/*",
"src/isbn-bulk-rename.sh",
"src/isbn-extract.sh"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"engineStrict": true,
"dependencies": {
"@babel/runtime": "^7.17.2",
"isbn3": "^1.1.19",
"issn": "^1.0.6",
"meow": "^10.1.2",
"node-isbn": "^1.6.1"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/plugin-transform-strict-mode": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"babel-plugin-inline-json-import": "^0.3.2",
"mocha": "^10.0.0",
"sinon": "^13.0.1"
}
}