-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "promise-effects",
"version": "2.1.0",
"description": "Promise effects for advanced use cases like retry, timeout, observation over promises.",
"author": {
"email": "mehmetmorcay@gmail.com",
"name": "Mehmet Morcay",
"url": "https://github.com/mkg0"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mkg0/promise-effects.git"
},
"scripts": {
"dev": "tsc -w --inlineSourceMap",
"prebuild": "npm run clean",
"build": "tsc --sourcemap",
"clean": "git clean -f -X",
"prepublishOnly": "npm run test && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"postpublish": "npm run clean",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.4",
"prettier": "^2.0.4",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint"
],
"**/*.+(json|ts|tsx)": [
"prettier --write"
]
}
}