-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 883 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
36
37
38
{
"name": "wayback-machine",
"version": "0.2.1",
"description": "Internet Wayback Machine Client",
"main": "index.js",
"scripts": {
"test": "mocha test/",
"lint": "jshint --verbose examples/ lib/ test/ index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macbre/wayback-machine.git"
},
"keywords": [
"archive",
"memento",
"wayback"
],
"author": "Maciej Brencz <maciej.brencz@gmail.com> (https://github.com/macbre)",
"license": "ISC",
"bugs": {
"url": "https://github.com/macbre/wayback-machine/issues"
},
"homepage": "https://github.com/macbre/wayback-machine#readme",
"devDependencies": {
"jshint": "^2.9.4",
"mocha": "^3.2.0"
},
"dependencies": {
"debug": "^2.6.3",
"fetch": "^1.1.0",
"split": "^1.0.0"
},
"jshintConfig": {
"node": true,
"strict": true
}
}