-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.07 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.07 KB
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
{
"name": "future_commit",
"version": "0.2.1",
"description": "Use future date while making git commits",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "ncc build index.js -o build",
"package": "pkg . -t node18-macos,node18-linux --out-path dist"
},
"author": "raevilman",
"license": "ISC",
"bin": {
"future-commit": "./build/index.js"
},
"dependencies": {
"yesno": "^0.4.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"pkg": "^5.8.1"
},
"pkg": {
"scripts": "build/**/*.js",
"targets": [
"node18"
]
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"collectCoverageFrom": [
"*.js",
"!build/**",
"!dist/**"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"testMatch": [
"**/tests/**/*.test.js"
],
"testTimeout": 10000
}
}