-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.87 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.87 KB
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
{
"name": "random_code_snippets_nodejs",
"version": "1.1.0",
"description": "Random small code snippets, notes, could be useful for something",
"private": true,
"main": "src/index.mjs",
"scripts": {
"clean": "run-p clean:coverage clean:modules",
"clean:coverage": "rm -rf coverage",
"clean:modules": "rm -rf node_modules",
"reinstall": "run-s clean reinstall:install",
"reinstall:install": "npm install",
"format": "(git diff --name-only HEAD; git ls-files --others --exclude-standard) | grep -E '\\.(md|css|js|cjs|mjs|jsx|ts|cts|mts|tsx)$' | xargs prettier --write",
"format:all": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "node src/index.mjs",
"prepare": "husky",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"build:doc": "npm-run-all -p build:doc:*",
"build:doc:apidoc": "apidoc -c apidoc.json -f \".*\\.js$\" -f \".*\\.mjs$\" -i src/ -o docs/apidoc",
"build:doc:jsdoc": "jsdoc -P package.json -R README.md -c jsdoc.config.js -r -d docs/jsdoc",
"release:beta:patch": "npm version prepatch --preid=beta",
"release:beta:minor": "npm version preminor --preid=beta",
"release:beta:major": "npm version premajor --preid=beta",
"release:beta": "npm version prerelease --preid=beta",
"release:rc:patch": "npm version prepatch --preid=rc",
"release:rc:minor": "npm version preminor --preid=rc",
"release:rc:major": "npm version premajor --preid=rc",
"release:rc": "npm version prerelease --preid=rc",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"preversion": "git checkout main && git pull && npm run test",
"postversion": "git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/altoinu/random_code_snippets_nodejs.git"
},
"author": "Kaoru Kawashima",
"license": "ISC",
"bugs": {
"url": "https://github.com/altoinu/random_code_snippets_nodejs/issues"
},
"homepage": "https://github.com/altoinu/random_code_snippets_nodejs#readme",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"npm-run-all": "^4.1.5",
"prettier": "3.4.2",
"prettier-plugin-sort-imports": "^1.8.6",
"semver": "^7.7.1",
"ts-jest": "^29.4.9",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"dependencies": {
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"express": "^4.21.2"
}
}