-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.01 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.01 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "g8-xml-patch",
"version": "0.1.5",
"description": "XML Patch conforming to RFC 5261.",
"main": "lib/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production webpack && tsc",
"build:docs": "typedoc",
"test": "jest",
"test:cover": "npm test -- --coverage",
"wba": "cross-env WBA=1 npm run build"
},
"keywords": [
"typescript",
"xml",
"rfc-5261"
],
"author": "eidng8",
"license": "GPL-3.0",
"repository": "git@github.com:eidng8/xml-patch.git",
"bugs": "git@github.com:eidng8/xml-patch/issues",
"files": [
"src",
"lib",
"translations",
"typings"
],
"dependencies": {
"iconv-lite": "^0.5.1",
"pretty-data": "^0.40.0",
"xmldom-ts": "^0.3.1",
"xpath-ts": "^1.3.13"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.9.0",
"@bundle-analyzer/webpack-plugin": "^0.5.1",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.30",
"@types/xml-formatter": "^1.1.0",
"@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",
"cross-env": "^7.0.2",
"eledoc": "^0.2.1",
"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",
"jest": "^25.1.0",
"prettier": "2.0.4",
"pretty-quick": "^2.0.1",
"ts-jest": "^25.2.1",
"typedoc": "^0.17.4",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"xml-formatter": "^1.2.0"
}
}