-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 820 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 820 Bytes
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
{
"name": "@conjurelabs/dot-template",
"version": "3.0.0",
"description": "support for templatized files",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest --rootDir=\"test\" --testPathPattern=\"\\.test.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConjureLabs/dot-template"
},
"bugs": {
"url": "https://github.com/ConjureLabs/dot-template/issues"
},
"homepage": "https://github.com/ConjureLabs/dot-template#readme",
"license": "MIT",
"files": [
"dist/*"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@types/node": "^18.15.13",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
}
}