-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "haiku-tweets",
"version": "2.6.0",
"description": "Identify haiku on Twitter and post them",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:clean && npm run build:copy && npm run build:install && npm run build:zip",
"build:clean": "rimraf dist && mkdirp dist",
"build:copy": "copyfiles \"lib/*\" \"*.json\" lambda.js dist",
"build:install": "cd dist && npm install --production",
"build:zip": "cd dist && bestzip dist.zip * && mv dist.zip ../",
"coverage": "jest --coverage",
"lint": "eslint lib/**",
"start": "node run",
"test": "jest",
"timer": "node lib/timer"
},
"repository": {
"type": "git",
"url": "https://github.com/pnevares/haiku-tweets.git"
},
"author": "Pablo Nevares <pablo@nevares.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnevares/haiku-tweets/issues"
},
"homepage": "https://github.com/pnevares/haiku-tweets",
"dependencies": {
"syllable": "^4.1.0",
"twit": "^2.2.11"
},
"devDependencies": {
"aws-sdk": "^2.737.0",
"bestzip": "^2.1.6",
"copyfiles": "^2.3.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^26.4.1",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.js"
],
"moduleNameMapper": {
"config.json": "<rootDir>/__mocks__/config.json"
},
"clearMocks": true,
"testEnvironment": "node"
}
}