-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.4 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
{
"name": "@developertown/result-tuple",
"version": "0.1.4",
"description": "Simple type support for typed tuple return values in Typescript",
"author": "Jason Vasquez <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "yarn test --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"clean": "rimraf dist",
"compile": "tsc",
"build": "run-s clean compile",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/core": "*",
"@babel/preset-env": "*",
"@babel/preset-typescript": "*",
"@types/jest": "*",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-jest": "*",
"coveralls": "^3.0.6",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": ">=1",
"jest": "^24.9.0",
"lint-staged": ">=8",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.2",
"yarn-run-all": "^3.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(t|j)s": [
"eslint --fix",
"git add"
]
},
"jest": {
"coverageReporters": [
"lcov",
"text"
]
}
}