-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.21 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
46
47
48
49
50
51
52
53
{
"name": "pomeranian-js",
"description": "Simple and incredibly fast framework for Node.js",
"main": "./dist/index.js",
"type": "module",
"version": "1.0.7",
"author": "Ihor Kirei <[email protected]>",
"license": "MIT",
"keywords": [
"pomeranian",
"web",
"framework",
"rest",
"api",
"app",
"router"
],
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"chalk": "^5.0.1",
"nanoid": "^4.0.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"typescript-transform-paths": "^3.3.1"
},
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"**/*.json\"",
"build": "rimraf dist && tsc",
"release": "npm run format && npm run build && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IhorKirei/pomeranian-js.git"
},
"bugs": {
"url": "https://github.com/IhorKirei/pomeranian-js/issues"
},
"homepage": "https://github.com/IhorKirei/pomeranian-js#readme",
"types": "./dist/index.d.ts"
}