-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.92 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
{
"name": "waterfall-cli",
"version": "1.0.0-alpha.10",
"description": "Effortlessly create CLIs powered by Node.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist/"
],
"main": "./dist/cjs/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"dev": "yarn install --frozen-lockfile && yarn compile && yarn --cwd ./website install --frozen-lockfile",
"test": "jest && rugged",
"lint": "eslint --ext .js,.ts,.jsx,.tsx ./ && prettier --check '**/*.{ts,js,tsx,jsx,json,css,html,yml}'",
"format": "eslint --fix --ext .js,.ts,.jsx,.tsx ./ && prettier --write '**/*.{ts,js,tsx,jsx,json,css,html,yml}'",
"clean": "git clean -X -d --force && find . -type d -empty -delete",
"precompile": "rm -rf dist/",
"compile": "tsc --project tsconfig.cjs.json && tsc --project tsconfig.esm.json",
"postcompile": "./set-types.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparksuite/waterfall-cli.git"
},
"keywords": [
"cli",
"command",
"commander",
"line",
"interface",
"framework"
],
"author": "Sparksuite",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparksuite/waterfall-cli/issues"
},
"homepage": "https://waterfallcli.io",
"dependencies": {
"chalk": "^4.0.0",
"cli-table3": "^0.6.0",
"fuse.js": "^6.4.6",
"read-pkg-up": "^7.0.1",
"validate-npm-package-name": "^3.0.0",
"zod": "^3.0.0-alpha.31"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.35",
"@types/validate-npm-package-name": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^2.2.1",
"rugged": "^1.0.1",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}