-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "ixixx",
"version": "2.2.3",
"main": "dist/index.js",
"repository": "GMOD/ixixx-js",
"author": "Colin",
"files": [
"dist",
"esm",
"src"
],
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@types/command-exists": "^1.2.1",
"@types/jest": "^29.2.4",
"@types/node": "^20.5.9",
"@types/split2": "^4.2.0",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.8.0",
"jest": "^29.3.1",
"prettier": "^3.0.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives --max-warnings 0 src test",
"prebuild": "rimraf dist esm",
"build:esm": "tsc --target es2018 --outDir esm",
"build:es5": "tsc --target es2018 --module commonjs --outDir dist",
"build": "npm run build:esm && npm run build:es5",
"test": "jest",
"preversion": "npm run build",
"postversion": "git push --follow-tags"
},
"bin": {
"ixixxjs": "./dist/bin.js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"command-exists": "^1.2.9",
"external-sorting": "^1.3.1",
"split2": "^4.1.0",
"tmp": "^0.2.1"
}
}