-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
51
52
53
54
{
"name": "@prismamedia/ts-json-env-loader",
"license": "MIT",
"version": "2.0.0",
"packageManager": "[email protected]",
"main": "build/json-env-loader.cjs.js",
"module": "build/json-env-loader.esm.js",
"browser": "build/json-env-loader.umd.js",
"typings": "build/types/json-env-loader.d.ts",
"files": [
"build"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'src/__test__/**/*.ts'",
"build": "rollup -c",
"test": "jest --runInBand --verbose"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"useTabs": false
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"husky": "^4.3.8",
"jest": "^29.3.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup": "^2.38.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^29.0.3",
"ts-node": "^7.0.1",
"tslib": "^2.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.1.3"
}
}