-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 1.95 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
76
77
78
79
80
81
82
{
"name": "alium",
"version": "1.1.4",
"description": "Save CLI commands as aliases on a directory basis",
"main": "src/cli.ts",
"repository": {
"type": "git",
"url": "https://github.com/peerigon/alium.git"
},
"bin": {
"alium-bin": "./dist/cli.js"
},
"scriptlint": {
"strict": true
},
"scripts": {
"build": "run-s build:clean build:scripts build:chmod",
"build:chmod": "chmod +x dist/cli.js",
"build:clean": "rimraf ./dist",
"build:scripts": "tsc -p tsconfig.json",
"dev": "run-s dev:watch",
"dev:watch": "nodemon -e js,ts --watch src --exec \"yarn run build\"",
"other:updates": "updtr",
"prepublishOnly": "run-s build",
"start": "run-s dev",
"test": "run-s test:unit build test:lint test:scripts",
"test:lint": "eslint ./src --ext .ts,.tsx",
"test:lint:fix": "eslint ./src --ext .ts,.tsx --fix",
"test:scripts": "scriptlint",
"test:scripts:fix": "scriptlint --fix",
"test:unit": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"lint-staged": {
"./src/**/*.{js,jsx}": [
"test:lint:fix",
"git add"
]
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-peerigon": "^28.1.5",
"eslint-plugin-prefer-arrow": "^1.2.2",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"scriptlint": "^2.1.2",
"symlink-dir": "^4.1.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"updtr": "^3.1.0"
},
"keywords": [
"cli",
"alias"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@types/inquirer": "^7.3.1",
"await-exec": "^0.1.2",
"chalk": "^4.1.0",
"commander": "^6.2.1",
"debug": "^4.1.1",
"inquirer": "^7.3.3"
}
}