-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 932 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 932 Bytes
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
{
"name": "some-types",
"version": "1.0.1",
"description": "Some types, some of which are sum types",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:mulias/some-types.git",
"author": "Elias Mulhall <eli.mulhall@gmail.com>",
"license": "MIT",
"private": false,
"sideEffects": false,
"scripts": {
"build": "tsc",
"dev": "tsc --watch --noEmit",
"test": "npm run build && tsd && TZ=EST jest",
"format": "prettier --write ."
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"tsd": {
"directory": "test"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.6",
"date-fns": "^2.30.0",
"jest": "^29.6.2",
"prettier": "3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsd": "^0.28.1",
"typescript": "^5.1.6"
},
"dependencies": {},
"files": [
"dist/**/*"
]
}