-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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": "humane-society--scraper",
"version": "0.1.0",
"description": "Scrape the Oregon Humane Society's results pages for data about adoptable animals.",
"engineStrict": true,
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.3.0"
},
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"coverage": "nyc npm test",
"dev": "NODE_ENV=dev nodemon --watch . --exec \"micro\"",
"lint": "eslint --fix ./src ./test",
"precommit": "npm run lint && git add -A",
"start": "NODE_ENV=production micro",
"release": "standard-version --no-verify && git push --follow-tags",
"test": "NODE_ENV=test ava"
},
"keywords": [],
"author": "Joseph Fraley",
"license": "MIT",
"dependencies": {
"axios": "0.16.2",
"cheerio": "1.0.0-rc.2",
"date-fns": "1.28.5",
"micro": "8.0.4",
"ramda": "0.24.1",
"sanctuary": "0.13.2",
"tcomb": "3.2.23"
},
"devDependencies": {
"@joefraley/eslint-config": "1.0.0",
"ava": "0.22.0",
"babel-eslint": "7.2.3",
"bole": "3.0.2",
"codecov": "2.3.0",
"commitizen": "2.9.6",
"concurrently": "3.5.0",
"config3": "1.0.3",
"cz-conventional-changelog": "2.0.0",
"dev-null": "0.1.1",
"eslint": "4.6.1",
"husky": "0.14.3",
"micro-cors": "0.0.4",
"micro-visualize": "3.0.1",
"nodemon": "1.12.0",
"nyc": "11.2.1",
"prettier": "1.6.1",
"standard-version": "4.2.0",
"test-listen": "1.0.2",
"uuid": "3.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}