-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.27 KB
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
{
"name": "freemazon",
"version": "1.0.7",
"description": "Amazon Book Downloader",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"compile": "babel -d dist/ src/",
"prepublish": "npm test && npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/dleshem/freemazon.git"
},
"keywords": [
"freemazon",
"amazon",
"book",
"downloader"
],
"author": "Danny Leshem <dleshem@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dleshem/freemazon/issues"
},
"homepage": "https://github.com/dleshem/freemazon",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-transform-strict-mode": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"mocha": "^5.2.0"
},
"dependencies": {
"lodash": "^4.17.20",
"request": "^2.88.2",
"amazon-sitb": "^3.0.1",
"html-entities": "^2.0.2",
"commander": "^6.2.1"
},
"directories": {
"test": "test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}