-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1023 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1023 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
{
"name": "@steveho/ts-config",
"version": "1.0.1",
"description": "load application config, inspired from Laravel Config",
"main": "./dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"watch": "tsc --watch --preserveWatchOutput --pretty",
"build": "cross-env ENV=production rollup -c",
"test": "ts-node ./tests/test.ts && exit 0"
},
"keywords": [
"nodejs",
"config"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stevehogo/node-config.git"
},
"author": "steve.ho",
"license": "MIT",
"homepage": "https://github.com/stevehogo/node-config#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/node": "^18.0.1",
"cross-env": "^7.0.3",
"rollup": "^2.75.7",
"rollup-plugin-delete": "^2.0.0",
"ts-node": "^10.8.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}