This repository was archived by the owner on Sep 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 KB
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
{
"name": "@enzsft/cli",
"version": "2.0.5",
"description": "Build multi command CLI tools with ease. 😲",
"keywords": [
"cli",
"command",
"options",
"parse"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/enzsft/cli"
},
"author": "Enzyme Software",
"scripts": {
"build": "./scripts/build.sh",
"example": "ts-node example/index.ts",
"lint": "eslint . --ext .js,.ts",
"npm-publish": "./scripts/publish.sh",
"test": "jest",
"type": "tsc"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"minimist": "^1.2.0",
"string-argv": "^0.1.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.10",
"@types/minimist": "^1.2.0",
"@types/node": "^10.12.18",
"@types/string-argv": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"codecov": "^3.2.0",
"eslint": "^5.15.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.3.1",
"prettier": "^1.16.4",
"ts-node": "^7.0.1",
"typescript": "^3.2.4"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/precommit.sh"
}
}
}