forked from sparksuite/waterfall-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2 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": "0.5.0",
"description": "Effortlessly create CLIs powered by Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"pretest": "yarn compile && yarn link && for directory in ./test/programs/*/ ; do (yarn --cwd \"$directory\" link waterfall-cli); done && yarn --cwd test/programs/typescript/ compile",
"test": "jest",
"lint": "eslint --ext .js,.ts . && prettier --check '**/*.{ts,js,json}'",
"format": "eslint --fix --ext .js,.ts . && prettier --write '**/*.{ts,js,json}'",
"clean": "rm -rf node_modules/ coverage/ dist/ && for directory in ./test/programs/*/ ; do (cd \"$directory\" && rm -rf node_modules/); done",
"compile": "rm -rf dist/ && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparksuite/waterfall-cli.git"
},
"keywords": [
"cli",
"framework"
],
"author": "Sparksuite",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparksuite/waterfall-cli/issues"
},
"homepage": "https://github.com/sparksuite/waterfall-cli",
"dependencies": {
"chalk": "^4.0.0",
"cli-table": "^0.3.1",
"deepmerge": "^4.0.0",
"fuse.js": "^3.4.5",
"semver": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-typescript": "^7.7.4",
"@types/cli-table": "^0.3.0",
"@types/jest": "^26.0.3",
"@types/node": "^13.9.1",
"@types/semver": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^26.0.1",
"prettier": "2.2.1",
"typescript": "^4.0.2"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"<rootDir>/src/**"
],
"testMatch": [
"<rootDir>/test/*.test.ts"
],
"verbose": true
}
}