-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "@contemplr/contemplate",
"version": "1.0.2",
"description": "CLI to generate git template and populate variables for the templated repository",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/contemplr/contemplate.git"
},
"bugs": {
"url": "https://github.com/contemplr/contemplate/issues"
},
"homepage": "https://github.com/contemplr/contemplate",
"scripts": {
"test": "jest --detectOpenHandles",
"publish": "npm publish --access public"
},
"bin": {
"contemplate": "bin/index.js"
},
"private": false,
"preferGlobal": true,
"keywords": [
"git",
"template",
"templating",
"auto-templating"
],
"author": "developersunesis",
"license": "MIT",
"devDependencies": {
"chalk": "^5.0.1",
"jest": "^28.1.3"
},
"dependencies": {
"cli-color": "^2.0.3"
},
"directories": {
"test": "tests"
},
"jest": {
"verbose": true,
"transformIgnorePatterns": ["/node_modules/", "\\.pnp\\.[^\\\/]+$", "/utils/logger.js"]
}
}