UNPKG

1.63 kBJSONView Raw
1{
2 "name": "carpent",
3 "version": "2.0.1",
4 "description": "Bootstrap and configure any project using its template",
5 "main": "dist/index.js",
6 "bin": "dist/cli.js",
7 "types": "dist/index.d.ts",
8 "files": [
9 "dist"
10 ],
11 "scripts": {
12 "build": "tsc",
13 "test": "jest",
14 "test-report": "jest --coverage --coverageReporters=text-lcov | coveralls",
15 "test-without-reporting": "jest --coverage",
16 "semantic-release": "semantic-release"
17 },
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/AnandChowdhary/carpent.git"
21 },
22 "keywords": [
23 "node.js",
24 "typescript",
25 "javascript",
26 "library"
27 ],
28 "author": "Anand Chowdhary <mail@anandchowdhary.com>",
29 "engines": {
30 "node": ">=10.0.0"
31 },
32 "license": "MIT",
33 "bugs": {
34 "url": "https://github.com/AnandChowdhary/carpent/issues"
35 },
36 "homepage": "https://anandchowdhary.github.io/carpent/",
37 "dependencies": {
38 "@sindresorhus/slugify": "^1.0.0",
39 "fs-extra": "^9.0.1",
40 "got": "^11.3.0",
41 "inquirer": "^7.1.0",
42 "ora": "^4.0.4"
43 },
44 "devDependencies": {
45 "@semantic-release/git": "^9.0.0",
46 "@types/fs-extra": "^9.0.1",
47 "@types/inquirer": "^6.5.0",
48 "@types/jest": "^26.0.0",
49 "@types/node": "^14.0.13",
50 "coveralls": "^3.1.0",
51 "jest": "^26.0.1",
52 "semantic-release": "^17.0.8",
53 "semantic-release-gitmoji": "^1.3.4",
54 "ts-jest": "^26.1.0",
55 "typescript": "^3.9.5"
56 },
57 "jest": {
58 "roots": [
59 "<rootDir>"
60 ],
61 "transform": {
62 "^.+\\.tsx?$": "ts-jest"
63 },
64 "moduleFileExtensions": [
65 "js",
66 "ts",
67 "json"
68 ]
69 }
70}