forked from WebDevCaptain-Lab/oss-npm-package-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "oss-npm-package-workshop",
"version": "0.0.1",
"description": "Workshop for developing Open Source NPM packages.",
"main": "index.js",
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"test:watch": "vitest",
"test": "vitest run",
"prepare": "husky",
"lint": "eslint .",
"format": "prettier --write .",
"commit": "commit",
"build": "rollup -c"
},
"keywords": [
"workshop",
"npm",
"package",
"open-source"
],
"author": "Shreyash (WebDevCaptain)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/prompt-cli": "^19.7.0",
"@eslint/js": "^9.18.0",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rollup": "^4.30.1",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}