-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "ozzzy",
"version": "0.2.1",
"description": "A small, easy to compose, HTTP API interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"repository": {
"url": "git+https://github.com/duncangrubbs/ozzzy.git"
},
"author": "Duncan Grubbs <duncan.grubbs@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc --p tsconfig.production.json",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/*",
"example": "rm -rf dist.examples && tsc --p tsconfig.examples.json --outDir dist.examples && node dist.examples/examples/basic.js",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@eslint/js": "^9.1.1",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"globals": "^15.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript-eslint": "^7.7.1"
},
"dependencies": {
"typescript": "^5.4.5"
}
}