-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"name": "jsonthis",
"version": "1.1.0",
"description": "Jsonthis is the perfect tool to convert your models to JSON objects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"homepage": "https://github.com/davidecaroselli/jsonthis",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/davidecaroselli/jsonthis.git"
},
"scripts": {
"build": "rm -rf lib/* && tsc",
"test": "npm run build && jest",
"deploy": "npm run build && npm publish --access=public"
},
"keywords": [
"json",
"sequelize",
"jsonthis"
],
"author": "Davide Caroselli",
"license": "Apache-2.0",
"dependencies": {
"case-anything": "^2.1.13"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@babel/plugin-transform-typescript": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.12",
"@types/json-bigint": "^1.0.4",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"json-bigint": "^1.0.0",
"timemachine": "^0.3.2"
}
}