-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1017 Bytes
/
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
{
"name": "@garbee/iso8601",
"version": "0.0.0",
"description": "ISO 8601 validation aids",
"main": "dist/src/index.js",
"type": "module",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"files": [
"./dist/src/index.js",
"./dist/src/index.d.ts",
"package.json",
"package-lock.json",
"license.md",
"readme.md"
],
"scripts": {
"build": "tsc",
"test": "c8 --config=etc/c8rc.json ava --config=etc/ava.config.js",
"lint": "eslint --ext=.ts src tests"
},
"author": "Jonathan Garbee <jonathan@garbee.me>",
"license": "Unlicense",
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@types/node": "^20.14.7",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"ts-node": "^10.9.2",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
}
}