generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
37 lines (37 loc) · 829 Bytes
/
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
{
"name": "replace-tokens-action",
"version": "1.0.0",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"package": "ncc build src/main.ts -o dist",
"test": "jest --runInBand",
"test-watch": "jest --watch --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cschleiden/replace-tokens.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "cschleiden",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"replace-in-file": "^7.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.13",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}