-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.57 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
73
74
75
{
"name": "corre",
"version": "1.0.2",
"description": "run your npm scripts",
"author": "Evans Owino",
"homepage": "https://github.com/eowino/corre",
"license": "MIT",
"keywords": [
"npm scripts",
"execute",
"script",
"tool"
],
"main": "dist/index.js",
"files": [
"dist/**/*",
"bin/**/*"
],
"engines": {
"node": ">=8.10.0"
},
"bin": {
"corre": "./bin/index.js"
},
"scripts": {
"start": "tsc --watch",
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"debug": "node --inspect-brk dist/index.js",
"debug:clean": "npm run build && npm run debug",
"run": "npm run build && node dist/index.js",
"format": "eslint . --fix '**/*.{js,ts}'",
"format:check": "eslint . '**/*.{js,ts}'",
"precommit": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run build",
"postpublish": "git push --tags"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write",
"git add"
],
"*.{ts,js}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"devDependencies": {
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.11.7",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^9.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"dependencies": {
"inquirer": "^7.0.0"
}
}