-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 932 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 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
{
"name": "common-es",
"version": "1.1.0",
"description": "provides utilities for nodejs to be able to resolve es modules, such as providing the __dirname and __filename variables",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"start:dev": "npx nodemon -q ./dist/index.js",
"build": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samislam/common-es.git"
},
"keywords": [
"__dirname",
"__filename",
"filename",
"dirname",
"common-es",
"es-node",
"es6",
"es-next"
],
"author": "Islam Yamor",
"license": "ISC",
"bugs": {
"url": "https://github.com/samislam/common-es/issues"
},
"homepage": "https://github.com/samislam/common-es#readme",
"devDependencies": {
"@types/node": "^18.15.3",
"nodemon": "^2.0.21"
},
"dependencies": {
"typescript": "^4.9.5"
}
}