generated from eidng8/typescript-webpack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 KB
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
56
57
58
59
60
61
62
{
"name": "g8-xml-patch-cli",
"version": "0.0.2",
"description": "RFC 5261 compliant XML patch command line tool.",
"main": "bin/index.js",
"bin": "bin/index.js",
"scripts": {
"build": "webpack",
"start": "node ./bin/index.js",
"dev": "webpack --mode=development --watch --devtool source-map",
"test": "jest"
},
"keywords": [
"typescript",
"babel",
"jest",
"webpack"
],
"files": [
"bin"
],
"author": "eidng8",
"license": "GPL-3.0",
"repository": "git@github.com:eidng8/xml-patch-cli.git",
"bugs": "git@github.com:eidng8/xml-patch-cli/issues",
"dependencies": {
"g8-xml-patch": "^0.1.5",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.30",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"prettier": "2.0.4",
"pretty-quick": "^2.0.1",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}