-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.6 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
{
"name": "@ap32/lexorank",
"version": "0.0.8",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/ap32/lexorank.git"
},
"license": "MIT",
"main": "dist/lexorank.cjs",
"module": "dist/lexorank.mjs",
"browser": "dist/lexorank.umd.js",
"types": "dist/lexorank.d.ts",
"scripts": {
"build": "rollup -c --configPlugin rollup-plugin-esbuild",
"dev": "rollup -c -w --configPlugin rollup-plugin-esbuild",
"test": "jest",
"eslint-check": "eslint --max-warnings 0 .",
"eslint-fix": "eslint --fix --max-warnings 0 .",
"tsc-check": "tsc --noEmit",
"prepare": "husky install",
"validate": "npm-run-all --parallel test eslint-check tsc-check",
"prepublishOnly": "npm-run-all --parallel test eslint-check tsc-check build",
"precommit": "npm run validate"
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@swc/core": "^1.3.24",
"@swc/jest": "^0.2.24",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vue/eslint-config-prettier": "^7.0.0",
"esbuild": "^0.16.10",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"rollup": "^3.8.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^5.1.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}