generated from onebeyond/open-source-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "newsletter-generator",
"version": "1.0.2",
"description": "generate a newsletter report",
"main": "index.js",
"private": true,
"scripts": {
"start": "node src/index.js",
"lint": "standard",
"lint:fix": "standard --fix",
"format": "prettier-standard --lint",
"format:fix": "prettier-standard --format",
"test": "cross-env NODE_ENV=test && jest --detectOpenHandles --forceExit --verbose --runInBand",
"test:coverage": "cross-env NODE_ENV=test && jest --detectOpenHandles --forceExit --verbose --coverage --runInBand",
"test:watch": "cross-env NODE_ENV=test && jest --detectOpenHandles --forceExit --verbose --watchAll --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onebeyond/newsletter-generator.git"
},
"author": "Ulises Gascon",
"license": "MIT",
"bugs": {
"url": "https://github.com/onebeyond/newsletter-generator/issues"
},
"engines": {
"node": ">= 18.0.0"
},
"standard": {
"env": [
"jest"
]
},
"homepage": "https://github.com/onebeyond/newsletter-generator#readme",
"devDependencies": {
"cross-env": "7.0.3",
"jest": "29.7.0",
"jest-config": "29.7.0",
"nock": "13.5.4",
"prettier-standard": "16.4.1",
"standard": "17.0.0"
},
"dependencies": {
"@ulisesgascon/array-to-chunks": "2.0.0",
"@ulisesgascon/simplify-object": "1.0.0",
"dotenv": "16.4.5",
"ejs": "3.1.10",
"gh-got": "9.0.0",
"got": "11.8.6"
}
}