-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 837 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
{
"name": "concourse-node-helper",
"version": "0.2.0",
"description": "Helpers for writing concourse resource types quickly",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && npx jest -i",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexmherrmann/concourse-node-helper.git"
},
"keywords": [
"concourse",
"node",
"javascript",
"typescript"
],
"author": "Alex Herrmann",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alexmherrmann/concourse-node-helper/issues"
},
"homepage": "https://github.com/alexmherrmann/concourse-node-helper#readme",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}