-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.64 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
{
"name": "@fdmg/article-xml-json",
"version": "2.0.39",
"description": "parses fdmg-xml to article-json",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:FDMediagroep/fd-article-xml-json.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run webpack",
"lint": "eslint \"src/**\"",
"prettier": "prettier -c **/*.ts",
"test": "concurrently \"jest\" \"npm run lint\" \"npm run prettier\"",
"test:watch": "jest --watch",
"watch": "npm run webpack:dev -- --watch",
"webpack": "cross-env WEBPACK_BUNDLE_ANALYZER=true NODE_ENV=production webpack --mode=production",
"webpack:dev": "cross-env NODE_ENV=development webpack --mode=development"
},
"author": "DirkVanDerStraaten",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@xmldom/xmldom": "^0.8.10",
"concurrently": "^9.1.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"filemanager-webpack-plugin": "^8.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
}
}