-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
55
{
"name": "webpack-angular-translate",
"version": "3.3.0",
"description": "Webpack plugin that extracts the translation-ids with the default texts.",
"repository": "https://github.com/MichaReiser/webpack-angular-translate",
"main": "dist/index.js",
"typings": "./i18n.d.ts",
"engines": {
"node": ">=10.14.2"
},
"scripts": {
"pretest": "tsc",
"test": "jest",
"start": "tsc --watch",
"prepublish": "tsc"
},
"author": "Micha Reiser <micha@famreiser.ch>",
"license": "MIT",
"dependencies": {
"acorn": "^8.0.4",
"ast-types": "^0.14.2",
"cheerio": "^1.0.0-rc.2",
"escodegen": "^2.0.0",
"htmlparser2": "^5.0.0",
"loader-utils": "^1.2.3",
"source-map": "^0.7.3",
"webpack": "^4.29.6",
"webpack-sources": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@types/acorn": "^4.0.5",
"@types/cheerio": "^0.22.11",
"@types/domhandler": "^2.4.1",
"@types/escodegen": "^0.0.6",
"@types/estree": "^0.0.45",
"@types/htmlparser2": "^3.7.31",
"@types/jest": "^26.0.15",
"@types/loader-utils": "^1.1.3",
"@types/node": "^14.14.2",
"@types/webpack": "^4.4.25",
"@types/webpack-sources": "^0.1.5",
"babel-jest": "^26.6.0",
"deep-extend": "^0.6.0",
"html-loader": "^0.5.5",
"jest": "^26.6.0",
"memfs": "^3.2.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3",
"unionfs": "^4.2.0"
}
}