-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "date-form",
"version": "0.2.0",
"description": "Customizable date formatter with builtin presets.",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"scripts": {
"build": "node build.mjs",
"test": "xo && ava"
},
"author": "jwr12135",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jwr12135/date-form.git"
},
"keywords": [
"date",
"time",
"format"
],
"bugs": {
"url": "https://github.com/jwr12135/date-form/issues"
},
"homepage": "https://github.com/jwr12135/date-form#readme",
"devDependencies": {
"ava": "^4.2.0",
"typescript": "^4.6.4",
"xo": "^0.48.0"
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false
},
"xo": {
"prettier": true,
"space": 2,
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-extraneous-class": "off",
"max-depth": "off",
"unicorn/no-static-only-class": "off",
"unicorn/numeric-separators-style": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}