-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 886 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
{
"name": "resulted",
"version": "0.0.2",
"repository": "joshuajaco/resulted",
"license": "MIT",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"coverage": "mkdir -p coverage && touch coverage/lcov.info && nyc report --reporter=text-lcov > coverage/lcov.info",
"format": "prettier -w --ignore-path=.gitignore .",
"format:check": "prettier -c --ignore-path=.gitignore .",
"prepublishOnly": "npm run build",
"test": "nyc node -r jiti/register test.ts",
"typecheck": "tsc"
},
"devDependencies": {
"@types/node": "^20.3.0",
"jiti": "^1.18.2",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-expect": "^1.3.0",
"typescript": "^5.1.3"
}
}