generated from Ninad89/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
53
54
55
{
"name": "1-2and3",
"version": "1.1.0",
"description": "Utility to join array element with `,` and last element with `and`",
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"build": "rimraf built && tsc",
"test": "jest",
"lint": "eslint .",
"start": "tsnd --respawn src/index.ts",
"prepare": "husky install",
"commitlint": "commitlint --edit",
"prepublishOnly": "npm run lint && npm test && npm run build",
"format": "prettier src --write"
},
"keywords": [
"typescript",
"array",
"join with",
"join",
"utility",
"2 separator",
"1-2and3",
"array utilities"
],
"author": "Ninad Mahajan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ninad89/1-2and3.git"
},
"bugs": {
"url": "https://github.com/Ninad89/1-2and3/issues"
},
"homepage": "https://ninad89.github.io/1-2and3/",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"husky": "^8.0.0",
"jest": "^29.6.2",
"prettier": "3.0.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"files": [
"built"
]
}