generated from AnandChowdhary/node.ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "carpent",
"version": "2.0.1",
"description": "Bootstrap and configure any project using its template",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test-report": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test-without-reporting": "jest --coverage",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/AnandChowdhary/carpent.git"
},
"keywords": [
"node.js",
"typescript",
"javascript",
"library"
],
"author": "Anand Chowdhary <mail@anandchowdhary.com>",
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AnandChowdhary/carpent/issues"
},
"homepage": "https://anandchowdhary.github.io/carpent/",
"dependencies": {
"@sindresorhus/slugify": "^1.0.0",
"fs-extra": "^9.0.1",
"got": "^11.3.0",
"inquirer": "^7.1.0",
"ora": "^4.0.4"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^6.5.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"coveralls": "^3.1.0",
"jest": "^26.0.1",
"semantic-release": "^17.0.8",
"semantic-release-gitmoji": "^1.3.4",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"jest": {
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}