-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 959 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 959 Bytes
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
{
"name": "decryption-loader",
"version": "2.0.1",
"description": "Webpack loader that decrypts assets",
"repository": "https://github.com/Ansimorph/decryption-loader/",
"main": "index.js",
"bin": "./cli.js",
"scripts": {
"build": "tsc --version && tsc",
"test": "jest --runInBand --detectOpenHandles"
},
"author": "Björn Ganslandt",
"license": "MIT",
"private": false,
"keywords": [
"webpack",
"decrypt",
"cipher",
"loader"
],
"dependencies": {
"loader-utils": "^2.0.0",
"minimist": "^1.2.5",
"schema-utils": "^2.0.1",
"inquirer": "^7.2.0"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/loader-utils": "^2.0.1",
"@types/minimist": "^1.2.0",
"@types/webpack": "^4.41.17",
"del": "^6.0.0",
"jest": "^27.0.3",
"memory-fs": "^0.5.0",
"prettier": "^2.0.5",
"raw-loader": "^4.0.0",
"typescript": "^4.0.2",
"webpack": "^4.28.2"
}
}