-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 1.45 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "tsv-json",
"version": "2.0.0",
"description": "Convert between TSV and JSON (`string[][]`)",
"license": "MIT",
"repository": "papb/tsv-json",
"author": {
"name": "Pedro Augusto de Paula Barbosa",
"email": "[email protected]"
},
"engines": {
"node": ">=10"
},
"keywords": [
"tsv",
"json",
"string",
"table",
"matrix",
"convert",
"excel",
"typescript"
],
"scripts": {
"build": "del-cli dist && tsc",
"prepack": "npm run build",
"release": "npm run build && np --no-yarn --no-2fa --no-cleanup",
"test": "npm run build && xo && ava",
"lint": "tsc --noEmit && xo",
"ava": "npm run build && ava"
},
"main": "dist/source",
"types": "dist/source",
"files": [
"dist/source",
"!*.map"
],
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^10.17.40",
"ava": "^3.13.0",
"del-cli": "^3.0.1",
"np": "^6.5.0",
"source-map-support": "^0.5.19",
"typescript": "~4.0.3",
"xo": "^0.34.1"
},
"ava": {
"verbose": true,
"require": [
"source-map-support/register"
],
"typescript": {
"rewritePaths": {
"source/": "dist/source/",
"test/": "dist/test/"
}
}
},
"xo": {
"rules": {
"no-lonely-if": "off",
"curly": "off",
"linebreak-style": [
"error",
"unix"
],
"object-curly-spacing": [
"error",
"always"
]
},
"overrides": [
{
"files": "**/*.ts",
"rules": {
"@typescript-eslint/no-explicit-any": "error"
}
}
]
}
}