postman/package.json

30 lines
701 B
JSON
Raw Normal View History

2024-07-10 16:21:15 +02:00
{
"name": "postman",
"version": "0.1.0",
"description": "Delivers the assets of a web page",
"main": "dist/index.js",
2024-07-12 06:00:04 +02:00
"types": [
"dist/index.d.ts"
],
2024-07-10 16:21:15 +02:00
"scripts": {
"build": "npm exec tsc",
2024-07-12 06:51:20 +02:00
"prepare": "npm run build",
"tsc": "npm exec tsc -- --noEmit",
"eslint": "npm exec eslint -- src/*.ts src/**/*.ts"
2024-07-10 16:21:15 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/0x1eef/postman.git"
},
"author": "0x1eef",
"license": "0BSDL",
"devDependencies": {
"@types/node": "^16.18",
2024-07-12 06:00:04 +02:00
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ts-standard": "^12.0.2",
2024-07-10 16:21:15 +02:00
"typescript": "^4.5"
}
}