forked from JasonEtco/build-and-tag-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.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
{
"name": "build-and-tag-action",
"private": true,
"main": "dist/index.js",
"scripts": {
"start": "npx ncc run ./src/index.ts",
"build": "npx ncc build ./src/index.ts",
"test": "jest --coverage"
},
"dependencies": {
"actions-toolkit": "^6.0.1",
"semver": "^7.3.2"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.15",
"@types/js-yaml": "^3.12.5",
"@types/semver": "^7.3.4",
"@vercel/ncc": "^0.25.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"js-yaml": "^3.14.0",
"nock": "^13.0.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/tests/setup.ts"
],
"coveragePathIgnorePatterns": [
"<rootDir>/lib/"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
".+\\.tsx?$": "ts-jest"
},
"testMatch": [
"<rootDir>/tests/**/*.test.(ts|js)"
],
"globals": {
"ts-jest": {
"babelConfig": false
}
}
}
}