-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1006 Bytes
/
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
{
"name": "safe-environment-loader",
"version": "2.0.1",
"description": "Safe environment loader",
"license": "MIT",
"author": "Tomas Szabo <[email protected]>",
"repository": "github:deftomat/safe-environment-loader",
"homepage": "https://github.com/deftomat/safe-environment-loader",
"keywords": [
"environment",
"loader",
"webpack",
"safe"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"checkup": "opinionated checkup",
"watch": "tsc --watch",
"build": "tsc",
"prepublishOnly": "rm -rf ./dist && yarn build"
},
"husky": {
"hooks": {
"pre-commit": "opinionated pre-commit"
}
},
"prettier": "@deftomat/opinionated/configs/prettier.config.js",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@deftomat/opinionated": "^0.5.8",
"husky": "^4.0.3",
"loader-utils": "^1.1.0",
"typescript": "^3.7.4"
}
}