-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1019 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
42
43
{
"name": "app-settings-loader",
"version": "2.0.10",
"description": "A webpack loader to load and customize application settings",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Sayan751/app-settings-loader.git"
},
"scripts": {
"test:dev": "jest --no-cache --runInBand",
"test": "npm run test:dev -- --coverageReporters=lcov"
},
"keywords": [
"webpack",
"loader",
"application-settings"
],
"author": "Sayan Pal",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^22.0.0",
"coveralls": "^3.1.1",
"fs-extra": "^11.1.0",
"jest": "^29.4.2",
"standard-version": "^9.5.0",
"ts-loader": "^9.4.2",
"typescript": "^5.5.4",
"webpack": "^5.75.0"
},
"dependencies": {
"loader-utils": "^3.2.1",
"schema-utils": "^4.2.0"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"watchPathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}