-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "@sontx/mapstructjs",
"version": "1.0.0-alpha.1",
"description": "Mapping source object to target object with javascript.",
"main": "build/index.js",
"scripts": {
"build": "rimraf ./build && tsc -p tsconfig.build.json",
"playground": "npm run dts && npm run webpack",
"dts": "npm-dts generate --logLevel debug --output playground/src/mapstructjs.d.ts",
"webpack": "webpack",
"start:dev": "npx nodemon",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"test": "jest --coverage=true",
"test:dev": "jest --watchAll"
},
"keywords": [],
"author": {
"name": "sontx",
"url": "https://github.com/sontx"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.11.18",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-plugin-jest": "^26.6.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"npm-dts": "^1.3.12",
"onchange": "^7.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.6",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^28.0.7",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}