-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.8 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": "transmute",
"version": "1.0.0",
"description": "Dynamically transform a JSON into a Class with private properties and accessor methods at runtime",
"main": "./dist/transmute.js",
"module": "./dist/transmute.mjs",
"types": "./dist/transmute.d.ts",
"files": [
"/dist"
],
"scripts": {
"clean:node-modules": "node ./util/clean.mjs --dir=./node_modules",
"clean:dist": "node ./util/clean.mjs --dir=./dist",
"clean:all": "npm run clean:dist && npm run clean:node-modules",
"test": "jest",
"lint": "eslint .",
"minify": "esbuild ./dist/transmute.js --minify --outdir=./dist --out-extension:.js=.min.js",
"bundler:esbuild": "node ./esbuild.config.mjs --format=cjs,esm,iife",
"build": "npm run clean:dist && npm run lint && tsc && npm run bundler:esbuild -- --minify=true",
"build:dev": "npm run clean:dist && npm run lint && tsc && npm run bundler:esbuild",
"build:test": "npm run build && npm run test",
"build:scratch": "npm install && npm run build:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kapilkashyap/transmute.git"
},
"keywords": [
"JavaScript",
"transmute",
"pojo"
],
"author": "Kapil Kashyap",
"license": "MIT",
"bugs": {
"url": "https://github.com/kapilkashyap/transmute/issues"
},
"homepage": "https://github.com/kapilkashyap/transmute#readme",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"babel-jest": "^29.7.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}