-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "@stockopedia/typed-env",
"version": "1.0.1",
"description": "A strongly typed way to load environment variables",
"repository": {
"url": "https://github.com/Stockopedia/typed-env"
},
"private": false,
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"build": "tsc -p src",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@stryker-mutator/core": "^6.0.0",
"@stryker-mutator/jest-runner": "^6.0.0",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"husky": "^4.3.8",
"import-sort-style-module": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prettier-plugin-import-sort": "^0.0.6",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"publishConfig": {
"access": "public"
}
}