-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.61 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
{
"name": "gen-cite",
"version": "0.0.0-semantically-released",
"description": "A CLI tool for generating a reference description from extern web sites",
"keywords": [
"citation"
],
"repository": "[email protected]:WillBooster/gen-cite.git",
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"type": "module",
"bin": "./bin/index.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"build": "NODE_ENV=production rollup -c",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettify",
"lint": "eslint --color \"./{src,__tests__}/**/*.{js,jsx,ts,tsx}\"",
"lint-fix": "yarn lint --fix",
"prettify": "prettier --color --write \"**/{.*/,}*.{css,htm,html,js,json,json5,jsx,md,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\"",
"start": "yarn && babel-node -x .js,.jsx,.es6,.es,.ts -- src/main.ts",
"start-prod": "yarn && yarn build && yarn gen-i18n-ts",
"typecheck": "tsc --noEmit --Pretty",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"node-fetch": "3.3.1",
"pretty": "2.0.0"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/node": "7.22.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/preset-env": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/eslint": "8.40.2",
"@types/micromatch": "4.0.2",
"@types/node": "16.18.36",
"@types/pretty": "2.0.1",
"@types/semantic-release": "17.2.6",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"@willbooster/eslint-config-ts": "6.5.1",
"@willbooster/prettier-config": "6.5.1",
"@willbooster/renovate-config": "6.5.1",
"babel-plugin-transform-remove-console": "6.9.4",
"core-js": "3.31.0",
"esbuild": "0.18.9",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-node": "0.3.7",
"eslint-plugin-import": "2.27.5",
"husky": "7.0.4",
"lint-staged": "11.2.6",
"micromatch": "4.0.5",
"pinst": "2.1.6",
"prettier": "2.8.8",
"rollup": "2.79.1",
"rollup-plugin-node-externals": "4.1.1",
"semantic-release": "17.4.7",
"sort-package-json": "1.57.0",
"typescript": "4.9.5"
},
"engines": {
"node": ">=12"
},
"packageManager": "[email protected]"
}