-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.88 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
70
71
72
{
"name": "luisa-cli",
"version": "0.3.0",
"description": "New folder manager cli liinux friendly",
"main": "index.js",
"bin": {
"luisa-cli": "./dist/index.js"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"start:dev": "nodemon",
"build": "rimraf ./dist && tsc",
"lint": "eslint . --ext .ts --fix",
"lint-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"test": "jest ",
"test-cov": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint && npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/devpedrocosta/luisa-cli.git"
},
"keywords": [
"luisa",
"angola",
"cli",
"folder",
"manager"
],
"author": "Pedro costa",
"license": "ISC",
"bugs": {
"url": "https://github.com/devpedrocosta/luisa-cli/issues"
},
"homepage": "https://github.com/devpedrocosta/luisa-cli#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-google": "^0.14.0",
"husky": "^4.2.5",
"jest": "^22.4.4",
"mock-fs": "^4.12.0",
"nodemon": "^2.0.4",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"dependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/figlet": "^1.2.0",
"@types/mock-fs": "^4.10.0",
"@types/shelljs": "^0.8.8",
"chalk": "^4.0.0",
"commander": "^5.1.0",
"figlet": "^1.4.0",
"shelljs": "^0.8.4"
}
}