-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 966 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 966 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
40
41
{
"name": "make-node-env",
"version": "0.0.5",
"description": "Make use of json file formatting for handling node environment configs.",
"main": "lib/index.js",
"type": "commonjs",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"tslint": "tslint --project .",
"start": "rm -rf lib/ && tsc && node lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheCodingBug/make-node-env.git"
},
"keywords": [
"env",
"config",
"json",
"json config",
"node environment"
],
"author": "Neil Francis Ramirez Hipona",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheCodingBug/make-node-env/issues"
},
"homepage": "https://github.com/TheCodingBug/make-node-env#readme",
"devDependencies": {
"@types/node": "^18.16.3",
"jest": "^29.5.0",
"tslint": "^6.1.3",
"typescript": "^5.0.4"
},
"dependencies": {
"npm": "^9.6.5"
}
}