-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "@stefanoruth/env",
"version": "2.0.0",
"main": "dist/index.js",
"repository": "https://github.com/stefanoruth/env.git",
"author": "Stefano Ruth <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"dev": "tsc --watch",
"test": "mocha --require ts-node/register --require dotenv/config --recursive \"./src/**/*.test.ts\" --watch-files \"./src/**/*.ts\""
},
"files": [
"dist"
],
"keywords": [
"typescript",
"env",
"config",
"configuration"
],
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.9",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"mocha": "^10.2.0",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"prettier": {
"semi": false,
"useTabs": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always",
"jsxBracketSameLine": true,
"bracketSpacing": true,
"arrowParens": "avoid",
"printWidth": 120
},
"publishConfig": {
"access": "public"
}
}