-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "tsoid",
"version": "1.1.2",
"main": "dist/src/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"keywords": [
"library",
"typescript",
"functional",
"declarative",
"promises",
"async",
"asynchronous"
],
"types": "dist/index.d.ts",
"author": "Gustavo Santos <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"test": "CI=true jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"publish": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^24.9.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"husky": "^4.2.1",
"jest": "^24.9.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
}
}