-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "xmlbuilder",
"version": "0.0.1",
"description": "Build xml programatically",
"author": "Pukar Giri (DaringJoker)",
"keywords": [
"xml"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "tsc --build --clean && tsc --project tsconfig.build.json && tsc-alias",
"dev": "nodemon",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"docs": "typedoc src",
"test": "jest --watchAll"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-airbnb": "^0.0.1-security",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typedoc": "^0.23.10",
"typedoc-plugin-missing-exports": "^0.23.0",
"typescript": "^4.7.4"
},
"dependencies": {
"xmlbuilder2": "^3.0.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleNameMapper": {
"^\\$/(.*)$": "<rootDir>/src/$1"
}
}
}