-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.58 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": "@cheprasov/jsbt",
"version": "1.2.3",
"author": "Alexander Cheprasov",
"description": "JSBT is a library for serializing structured JavaScript data. The library is JavaScript oriented and tries to resolve JS needs for better data serialization.",
"keywords": ["JSBT", "serialization"],
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cheprasov/ts-jsbt.git"
},
"scripts": {
"build:prod": "webpack --mode production",
"build": "webpack --mode development",
"build:watch": "webpack --watch --mode development",
"eslint": "node ./node_modules/.bin/eslint ./app/src/",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.22.5",
"@babel/preset-env": "^7.22.10",
"@babel/register": "^7.22.5",
"@types/jest": "^29.5.4",
"@types/webpack": "^5.28.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.6.4",
"babel-loader": "^9.1.3",
"babel-preset-minify": "^0.5.2",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}