-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "auto-type-cast",
"version": "0.5.1",
"description": "Simple, lightweight type casting of JSON objects to classes. Use it on the JSON response from your server to deal with proper model classes on the frontend. No dependencies",
"author": "Josh Jordan",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/joshjordan/auto-type-cast.git"
},
"main": "dist/auto-type-cast.js",
"module": "dist/auto-type-cast.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/auto-type-cast.js",
"dist/types"
],
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack serve --mode=development",
"test": "jest --config test/jest.conf.js",
"lint": "eslint --ext .js,.ts src test/unit",
"typecheck": "tsc --noEmit",
"watch": "jest --watch --config test/jest.conf.js",
"prod": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"keywords": [
"types",
"cast",
"json",
"object",
"class",
"model",
"serialization",
"deserialization",
"response"
],
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-webpack-plugin": "^4.0.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}