UNPKG

2.41 kBJSONView Raw
1{
2 "name": "edam",
3 "version": "3.3.1",
4 "scripts": {
5 "dist": "rimraf dist && tsc",
6 "dev": "npm run dist -- -w",
7 "prepare": "npm run dist",
8 "prepublishOnly": "jest",
9 "changelog": "conventional-changelog -p angular -i ../../CHANGELOG.md -s -r 0 && git add ../../CHANGELOG.md"
10 },
11 "typings": "dist/index.d.ts",
12 "description": "💥 The multifunctional scaffold generator.",
13 "main": "dist/index.js",
14 "keywords": [
15 "scaffold",
16 "generator",
17 "edam"
18 ],
19 "author": "imcuttle",
20 "files": [
21 "dist/**"
22 ],
23 "dependencies": {
24 "@moyuyc/parse-git-config": "^2.0.1",
25 "await-event-emitter": "^1.1.2",
26 "chalk": "^2.3.2",
27 "change-case": "^3.0.2",
28 "cosmiconfig": "4.0.0",
29 "cross-spawn": "^6.0.5",
30 "debug": "^3.1.0",
31 "download": "^6.2.5",
32 "execa": "^1.0.0",
33 "filenamify": "^2.0.0",
34 "find-up": "^3.0.0",
35 "git-config-path": "^1.0.1",
36 "global-modules": "^1.0.0",
37 "handlebars": "^4.0.11",
38 "handlebars-helpers": "^0.10.0",
39 "inquirer": "^5.1.0",
40 "is-online": "^7.0.0",
41 "json5": "^1.0.1",
42 "line-column-path": "^1.0.0",
43 "lodash": "^4.17.5",
44 "lodash.omit": "^4.5.0",
45 "log-symbols": "^2.2.0",
46 "micromatch": "^3.1.10",
47 "mkdirp": "^0.5.1",
48 "omit-nully": "^1.0.0",
49 "p-reduce": "^1.0.0",
50 "parse-github-url": "^1.0.2",
51 "pify": "^3.0.0",
52 "resolve": "^1.6.0",
53 "rimraf": "^2.6.2",
54 "semver": "^5.5.0",
55 "terminal-link": "^1.1.0",
56 "tildify": "^1.2.0",
57 "untildify": "^3.0.2",
58 "update-notifier": "^2.4.0",
59 "url-join": "^4.0.0",
60 "vfile-location": "^2.0.3",
61 "walli": "^1.1.4"
62 },
63 "devDependencies": {
64 "is-ci": "^1.2.1",
65 "rimraf": "^2.6.2",
66 "tempy": "^0.2.1",
67 "typescript": "^3.1.3"
68 },
69 "repository": {
70 "type": "git",
71 "url": "git+https://github.com/imcuttle/edam.git"
72 },
73 "bugs": {
74 "url": "https://github.com/imcuttle/edam/issues"
75 },
76 "homepage": "https://github.com/imcuttle/edam#readme",
77 "license": "MIT",
78 "engines": {
79 "node": ">=6"
80 },
81 "jest": {
82 "testEnvironment": "node",
83 "testPathIgnorePatterns": [
84 ".cache"
85 ],
86 "transform": {
87 "^.+\\.jsx?$": "babel-jest",
88 "^.+\\.tsx?$": "ts-jest"
89 },
90 "testRegex": "((\\.|/)(test|spec))\\.(jsx?|tsx?)$",
91 "moduleFileExtensions": [
92 "ts",
93 "tsx",
94 "js",
95 "jsx",
96 "json",
97 "node"
98 ]
99 }
100}