-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "winmojilib",
"version": "0.3.3",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"repository": "git@github.com:ryanSN/winmojilib.git",
"author": "ryanSn",
"license": "MIT",
"keywords": [
"node",
"emoji",
"emojis",
"winmoji",
"unicode",
"windows",
"js"
],
"scripts": {
"clean": "rimraf ./dist/**/*",
"clean:cache": " rimraf ./cache/**/*",
"compile": "yarn clean && tsc",
"start": "rimraf ./src/data/**/* && ts-node src/builder/build.ts",
"prettier": "prettier --check src/**/*.{js,ts,tsx}",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prepublish": "yarn run compile",
"prepare": "yarn compile && husky install",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@types/cheerio": "^0.22.22",
"@types/fs-extra": "^9.0.1",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cheerio": "1.0.0-rc.10",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"husky": "^7.0.0",
"lint-staged": "^10.4.0",
"node-fetch": "^2.6.1",
"prettier": "2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16.0.0"
}
}