-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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": "array-has-length",
"version": "1.0.0",
"license": "ISC",
"main": "dist/index.js",
"engines": {
"node": ">=16.15.0 <19",
"npm": ">=8.5.5 <10"
},
"repository": {
"type": "git",
"url": "https://github.com/cooperwfloyd/arrayHasLength"
},
"homepage": "https://github.com/cooperwfloyd/arrayHasLength#readme",
"bugs": {
"url": "https://github.com/cooperwfloyd/arrayHasLength/issues"
},
"author": {
"name": "Cooper Floyd",
"url": "https://github.com/cooperwfloyd"
},
"contributors": [
{
"name": "Cooper Floyd",
"url": "https://github.com/cooperwfloyd"
}
],
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.39",
"eslint": "8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"nodemon": "^2.0.15",
"prettier": "^2.8.0"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist && npm run test && npm run prettier",
"compile": "swc ./src/* --out-dir ./dist",
"prepublishOnly": "npm i && npm run build",
"prepare": "husky install",
"prettier": "npx prettier --write .",
"test": "npx eslint \"./src/**/*.js\" \"./src/*.js\" --max-warnings=0 --fix"
},
"description": "",
"keywords": []
}