-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@bp/utileo",
"version": "3.0.0",
"description": "JS library with most common utils.",
"main": "index.js",
"module": "index.js",
"typings": "index.d.ts",
"publishConfig": {
"registry": "https://npm.bharatpe.in"
},
"scripts": {
"build": "npm run lint && npm run clean && rollup -c",
"clean": "rm -rf dist",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint --fix src/.",
"release": "standard-version",
"publish:fix": "npm publish dist --tag fix",
"publish:latest": "npm publish dist --tag latest"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^7.0.4",
"replace-json-property": "^1.6.3",
"require": "^2.4.20",
"rollup": "^2.38.5",
"rollup-plugin-multi-input": "^1.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-copy": "^3.5.0",
"semantic-release": "^17.4.1",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5"
},
"author": "WebChapter | Bharatpe",
"license": "ISC",
"keywords": [
"browser-util-functions",
"util-function",
"js-utils",
"javascript-utils",
"javascript-utils-function",
"common-utils"
],
"repository": {
"type": "git",
"url": "git://github.com/bharatpe/utileo"
},
"homepage": "https://github.com/bharatpe/utileo#readme",
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}