-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "JSONFileVersioner",
"version": "0.0.0",
"private": true,
"description": "JSON File Versioner",
"main": "lib/main.js",
"scripts": {
"build1": "npm run lint && tsc",
"test": "jest",
"lint": "tslint -c tslint.json src/*.ts __tests__/*.test.ts",
"bundle": "npm run format:write && npm run package",
"package": "npx ncc build src/main.ts -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"all": "npm run test && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rfennell/JSONFileVersioner"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Richard Fennell",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"fs": "^0.0.1-security",
"os": "^0.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^12.0.4",
"del": "^3.0.0",
"fs-copy-file-sync": "^1.0.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"json-diff": "^0.5.4",
"ts-jest": "^29.1.2",
"tslint": "^5.19.0",
"typescript": "^5.5.4",
"@vercel/ncc": "^0.38.1"
}
}