-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 948 Bytes
/
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
{
"name": "web-time-machine",
"author": "Ramin Vakilian <[email protected]>",
"description": "Creates snapshots of webpages and stores them in git",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "git://github.com/raminv80/webTimeMachine"
},
"main": "./app.js",
"dependencies": {
"batch-promise": "^1.0.0",
"fs-extra": "^6.0.1",
"minimist": "^1.2.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"sanitize-filename": "^1.6.1",
"sharp": "^0.20.4",
"url": "^0.11.0",
"webshot": "^0.18.0",
"xml2js-es6-promise": "^1.1.1"
},
"devDependencies": {
"chai": "^4.1.2",
"imagemagick": "git://github.com/rsms/node-imagemagick.git",
"mocha": "*",
"nock": "^9.3.3",
"rimraf": "^2.6.2",
"should": "^13.2.1"
},
"scripts": {
"start": "node app.js ",
"test": "mocha --ui bdd --reporter spec --require should ./test/index.spec.js"
}
}