-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "ember-pod-workflow-cli",
"version": "0.1.6",
"main": "index.js",
"repository": "[email protected]:rtablada/pod-workflow-cli.git",
"author": "Ryan Tablada <[email protected]>",
"license": "MIT",
"private": false,
"bin": {
"pod-workflow": "./cli.js"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"build:dev": "tsc -w",
"start": "build:dev",
"lint": "eslint src/**/*.ts",
"lint:fix": "yarn lint --cache --fix"
},
"devDependencies": {
"@types/inquirer": "^8.0.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"dependencies": {
"chalk": "^4.1.2",
"clipboardy": "~2.3.0",
"commander": "^9.4.1",
"directory-tree": "^3.5.1",
"ember-unused-components": "^1.2.0",
"inquirer": "^8.0.0",
"inquirer-file-tree-selection-prompt": "^1.0.5",
"lodash": "^4.17.21",
"path-exists": "^4.0.0",
"simple-git": "^3.15.1",
"uuid": "^9.0.0"
}
}