-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
53
54
55
56
57
58
59
60
{
"name": "sitesampler",
"version": "4.0.5",
"description": "Sample website text content over time.",
"main": "index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"coveralls": "^2.11.9",
"covert": "^1.1.0",
"doctoc": "^1.0.0",
"eslint": "^3.13.1",
"faucet": "0.0.1",
"rimraf": "^2.5.2",
"sinon": "^1.17.3",
"tape": "^4.5.1",
"through2": "^2.0.1",
"watch": "^1.0.1"
},
"scripts": {
"test": "node test/*.js | faucet && npm run clean",
"lint": "eslint lib test || true",
"coverage": "covert test/*.js || true && npm run clean",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"watch": "watch 'clear && npm run lint && npm test && npm run coverage' lib test && npm run clean",
"doctoc": "doctoc --github --title \"# Changelog\" CHANGELOG.md",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"clean": "rimraf testdata"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexlangberg/node-sitesampler.git"
},
"keywords": [
"scraping",
"crawling",
"time",
"chronological"
],
"author": "Alex Langberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexlangberg/node-sitesampler/issues"
},
"homepage": "https://github.com/alexlangberg/node-sitesampler#readme",
"dependencies": {
"bunyan": "^1.8.1",
"bunyan-loggly": "^1.0.0",
"bunyan-slack": "0.0.10",
"chronostore": "^3.0.0",
"fs-extra": "^1.0.0",
"le_node": "^1.3.0",
"needle-schedule": "^1.0.2",
"ramda": "^0.23.0",
"touch": "^1.0.0"
}
}