-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "rijksarchief-dl",
"version": "1.0.2",
"description": "A command line tool to download images from the Belgian National Archives",
"main": "main.js",
"repository": "[email protected]:DieterHolvoet/rijksarchief-dl.git",
"author": "Dieter Holvoet <[email protected]>",
"license": "MIT",
"preferGlobal": true,
"engines": {
"node": ">=4.0.0"
},
"bin": {
"rijksarchief-dl": "./dist/main.js"
},
"dependencies": {
"ascii-progress": "^1.0.5",
"canvas": "v2.0.0-alpha.2",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"into-stream": "^3.1.0",
"libxmljs": "^0.18.4",
"merge-images": "^1.0.4",
"node-fetch": "^1.7.1",
"opn": "^5.1.0",
"stream-to-promise": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.0.0"
},
"scripts": {
"link-install": "npm link && npm install . --global",
"build": "babel src --out-dir dist --source-maps inline",
"dev": "babel src --out-dir dist --watch --source-maps inline"
}
}