-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.51 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
{
"name": "@stacker/alfred-utils",
"version": "0.1.60",
"description": "Offer some utils to improve alfred workflow development",
"homepage": "https://github.com/alanhg/alfred-utils#readme",
"bugs": {
"url": "https://github.com/alanhg/alfred-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanhg/alfred-utils.git"
},
"license": "MIT",
"author": "Alan He",
"sideEffects": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"alfred-utils": "bin/index.js"
},
"scripts": {
"release": "standard-version",
"release:alpha": "npm run release -- --prerelease alpha",
"test": "TZ='Asia/Shanghai' jest",
"tsc": "rimraf dist && tsc -p ./tsconfig.json",
"build": "npm run tsc && cp lib/*.d.ts dist/",
"test:pkg": "npm run tsc && npm link"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "^0.21.1",
"commander": "^8.3.0",
"moment": "^2.29.1",
"node-notifier": "^10.0.1",
"pinyin-pro": "^3.8.2",
"plist": "^3.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@types/node-notifier": "^8.0.2",
"@types/plist": "^3.0.2",
"husky": "4.3.8",
"jest": "^27.0.5",
"rimraf": "^3.0.2",
"standard-version": "^9.3.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"publishConfig": {
"access": "public"
},
"hooks": {
"pre-commit": "npm test"
}
}