-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "akronim",
"version": "1.1.1",
"description": "An acronym generator with useful options.",
"license": "MIT",
"type": "module",
"exports": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/ozgurg/akronim"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose --passWithNoTests",
"test:coverage": "npm run test -- --coverage --passWithNoTests",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --ext .js .",
"lint-staged": "lint-staged",
"prepare": "husky install",
"generate-types": "tsc"
},
"author": {
"email": "ozgurgorgulu54@gmail.com",
"name": "Özgür Görgülü",
"url": "https://github.com/ozgurg"
},
"keywords": [
"acronym",
"generator"
],
"devDependencies": {
"@types/jest": "^29.4.0",
"eslint": "^8.35.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^40.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.1.2",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}