-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.1 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
{
"name": "erised",
"version": "3.3.0",
"description": "A CLI for archiving websites locally",
"bin": {
"erised": "bin/erised"
},
"main": "src",
"repository": {
"type": "git",
"url": "git+https://github.com/marvelm/erised.git"
},
"keywords": [
"mirror",
"archive"
],
"author": "marvelm",
"license": "MIT",
"bugs": {
"url": "https://github.com/marvelm/erised/issues"
},
"homepage": "https://github.com/marvelm/erised#readme",
"dependencies": {
"bluebird": "^3.4.6",
"docopt": "0.6.2",
"fs-extra": "^0.30.0",
"homedir": "^0.6.0",
"nightmare": "2.10.0",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"sequelize": "^3.24.3",
"sqlite3": "^3.1.4",
"umzug": "^1.11.0",
"yargs": "^5.0.0"
},
"engines": {
"node": ">= 6.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"mocha": "3.2.0",
"mockery": "2.0.0",
"sequelize-cli": "2.5.1",
"standard": "8.6.0"
},
"scripts": {
"prepublish": "npm test",
"pretest": "npm run lint",
"lint": "standard --env mocha",
"test": "mocha test"
}
}