-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 998 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 998 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
41
{
"name": "@koala-framework/trl-webpack-plugin",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepublish": "npm run build"
},
"author": "Alexander Kaufmann <ak@vivid-planet.com>",
"license": "BSD-2-Clause",
"publishConfig": {
"access": "public"
},
"dependencies": {
"gettext-parser": "^2.0.0"
},
"peerDependencies": {
"webpack": "^4.20.2"
},
"devDependencies": {
"@types/node": "^10.11.4",
"@types/webpack": "^4.4.14",
"prettier": "^1.14.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.1",
"webpack": "^4.20.2"
},
"keywords": [
"trl",
"translation",
"webpack",
"webpack-plugin"
]
}