-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
88 lines (88 loc) · 3.77 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
83
84
85
86
87
88
{
"name": "alfred-font-awesome-workflow",
"private": true,
"engines": {
"node": "12.x"
},
"description": "You can incrementally search for Font Awesome icons and paste it to front most app.",
"scripts": {
"clean": "rimraf ./dist && make-dir ./dist && cpx './assets/{icons/**/*.png,icon.png,info.plist}' ./dist",
"compile": "webpack",
"package": "pkg --targets macos --output ./dist/font-awesome-workflow ./dist/index.js",
"compress": "cd ./dist && rimraf ./index.js && zip -r -q Font-Awesome.alfredworkflow ./",
"build": "npm run clean && npm run compile && npm run package && npm run compress",
"build:open": "npm run build && npm run open",
"open": "open ./dist/Font-Awesome.alfredworkflow",
"exec": "npm run clean && npm run compile && node ./dist/index.js",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cmd:find": "./dist/font-awesome-workflow --find font-awesome flag",
"test:cmd:put:name": "cross-env-shell \"./dist/font-awesome-workflow --put-name \\\"${npm_package_config_encoded_query}\\\"\"",
"test:cmd:put:code": "cross-env-shell \"./dist/font-awesome-workflow --put-code \\\"${npm_package_config_encoded_query}\\\"\"",
"test:cmd:put:ref": "cross-env-shell \"./dist/font-awesome-workflow --put-ref \\\"${npm_package_config_encoded_query}\\\"\"",
"test:cmd:put:url": "cross-env-shell \"./dist/font-awesome-workflow --put-url \\\"${npm_package_config_encoded_query}\\\"\"",
"test:cmd:put": "npm run test:cmd:put:name && npm run test:cmd:put:code && npm run test:cmd:put:ref && npm run test:cmd:put:url",
"test:cmd": "npm run test:cmd:find && npm run test:cmd:put",
"fmt": "prettier --write .",
"lint": "eslint . --ext 'ts,js'",
"lint:fix": "eslint . --fix --ext 'ts,js'",
"tsc": "tsc --noEmit",
"organize-imports": "organize-imports-cli ./tsconfig.json",
"check": "npm run organize-imports && npm run lint:fix && npm run fmt && npm run tsc",
"utils:json": "ts-node ./utils/converters/icons_json.ts",
"utils:svg2png": "rimraf ./assets/icons && make-dir ./assets/icons && ts-node ./utils/converters/svg_to_png.ts",
"utils:composite": "ts-node ./utils/converters/composite.ts",
"var:encoded_query": "cross-env-shell \"echo \\\"${npm_package_config_encoded_query}\\\"\"",
"release:json": "npm run utils:json",
"release:icons": "npm run utils:svg2png && npm run utils:composite",
"release:build": "npm run build:open"
},
"config": {
"encoded_query": "eyJuYW1lIjoiZm9udC1hd2Vzb21lIiwic3R5bGUiOiJicmFuZHMifQ\\=\\="
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruedap/alfred-font-awesome-workflow.git"
},
"author": "ruedap",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruedap/alfred-font-awesome-workflow/issues"
},
"homepage": "https://github.com/ruedap/alfred-font-awesome-workflow#readme",
"devDependencies": {
"@types/imagemin": "7.0.1",
"@types/imagemin-pngquant": "8.0.0",
"@types/jest": "26.0.24",
"@types/node": "14.14.31",
"@types/sharp": "0.29.4",
"@typescript-eslint/eslint-plugin": "4.29.3",
"@typescript-eslint/parser": "4.29.3",
"cpx": "1.5.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.1",
"fast-glob": "3.2.7",
"imagemin": "7.0.1",
"imagemin-pngquant": "9.0.2",
"jest": "27.0.6",
"make-dir": "3.1.0",
"make-dir-cli": "3.0.0",
"organize-imports-cli": "0.8.0",
"pkg": "5.3.3",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"sharp": "0.29.3",
"svgexport": "0.4.2",
"ts-jest": "27.0.4",
"ts-loader": "9.2.6",
"ts-node": "10.2.1",
"typescript": "4.3.5",
"webpack": "5.58.2",
"webpack-cli": "4.9.1"
},
"dependencies": {
"fuse.js": "6.4.6"
}
}