-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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": "generate-emoji-list",
"version": "1.1.0",
"description": "Generate a comprehensive list of all Unicode Emojis in any language.",
"keywords": [
"emoji",
"unicode-emoji",
"cloud-translation-api",
"json",
"emoji-list",
"generate-emoji-list"
],
"license": "MIT",
"author": "Leonhard Driesch",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"generate-emoji-list": "dist/cli.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc --newLine lf",
"check-types": "tsc --noEmit",
"format": "prettier . --write",
"lint": "eslint . --ignore-path .gitignore",
"prepublishOnly": "run-s test build",
"start": "ts-node src/cli.ts",
"test": "run-p lint check-types"
},
"dependencies": {
"@google-cloud/translate": "^6.3.1",
"enquirer": "^2.3.6",
"fs-extra": "^10.0.0",
"isomorphic-unfetch": "^3.1.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-packagejson": "^2.2.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14"
}
}