-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "your-package-name",
"version": "0.1.0",
"description": "A brief description of your package",
"main": "src/index.js",
"bin": "src/bin.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --config jestconfig.json",
"lint": "eslint src",
"lint:fix": "eslint --fix",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"prepublishOnly": "npm test && npm run prettier && npm run lint && npm run lint:fix"
},
"keywords": [],
"author": {
"name": "Roman Kurnovskii",
"email": "[email protected]",
"url": "https://romankurnovskii.com"
},
"license": "MIT",
"dependencies": {
"argparse": "2.0.1"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"prettier": "3.4.2"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/romankurnovskii/PACKAGE_NAME#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/romankurnovskii/PACKAGE_NAME.git"
},
"bugs": {
"url": "https://github.com/romankurnovskii/PACKAGE_NAME/issues"
},
"engines": {
"node": ">=14.0.0"
}
}