forked from alexlitel/congresstweets-automator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2 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
61
62
63
64
65
66
67
68
69
70
{
"name": "congresstweets",
"version": "1.0.0",
"main": "index.js",
"author": "<alexlitel@gmail.com>",
"license": "MIT",
"scripts": {
"start": "yarn dev:start",
"dev:start": "cross-env NODE_ENV=development babel-node src/main.js",
"dev:maintain": "cross-env NODE_ENV=development babel-node src/update.js",
"prod:build": "rimraf lib dist && babel src -d lib --ignore .test.js",
"prod:start": "heroku local",
"prod:maintain": "node lib/update.js",
"lint": "eslint --fix src --ext .js",
"test": "yarn lint && jest --coverage",
"heroku-postbuild": "yarn prod:build && cross-env NODE_ENV=production yarn prod:maintain --pb",
"precommit": "yarn test",
"prepush": "yarn test && yarn prod:build"
},
"jest": {
"testRegex": "test/.+.test.js"
},
"dependencies": {
"@octokit/rest": "^17.6.0",
"bluebird": "^3.5.1",
"dotenv": "^4.0.0",
"ent": "^2.2.0",
"flat": "^4.0.0",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"moment-timezone": "^0.5.13",
"pretty": "^2.0.0",
"qs": "^6.5.0",
"redis": "^2.7.1",
"request": "^2.34",
"request-promise": "^4.2.2",
"string-replace-async": "^1.2.1",
"twit": "^2.2.5",
"word-wrap": "^1.2.3",
"yargs-parser": "^8.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^0.14.3",
"jest": "^25.5.4",
"nock": "^12.0.3",
"nodemon": "^1.14.9",
"prettier": "^2.0.5",
"redis-mock": "^0.20.0",
"rimraf": "^2.6.1"
},
"engines": {
"node": "13.x",
"yarn": "1.x"
}
}