-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "tlence",
"version": "1.2.3",
"description": "debounce and throttle techniques for performance",
"main": "index.js",
"scripts": {
"test": "node index.test",
"lint": "eslint ./index.js",
"format": "prettier ./index.js --write --ignore-unknown",
"preversion": "npm run format && npm run test",
"postversion": "git push && git push --tags && npm publish",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/behnammodi/tlence.git"
},
"keywords": [],
"author": "Behnam Mohammadi",
"license": "ISC",
"bugs": {
"url": "https://github.com/behnammodi/tlence/issues"
},
"homepage": "https://github.com/behnammodi/tlence#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"lint-staged": {
"**/*.js": [
"npm run format"
],
"./index.js": [
"npm run lint"
]
},
"dependencies": {
"eslint": "^7.25.0"
}
}