-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"name": "@rising3/smart-entity-js",
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist ./docs",
"build": "tsc -p .",
"start": "ts-node ./src/example/example.ts",
"test": "jest",
"docs": "npx typedoc",
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"lint:fix": "eslint src/**/*.ts __tests__/**/*.ts --fix",
"format": "prettier --check src/**/*.ts __tests__/**/*.ts",
"format:fix": "prettier --write src/**/*.ts __tests__/**/*.ts"
},
"keywords": [
"entity",
"serializes",
"deserializes",
"clone",
"JSON Schema"
],
"homepage": "https://rising3.github.io/smart-entity-js/",
"repository": {
"type": "git",
"url": "git+https://github.com/rising3/smart-entity-js.git"
},
"bugs": {
"url": "https://github.com/rising3/smart-entity-js/issues"
},
"author": "rising3(Michio Nakagawa)",
"license": "Apache-2.0",
"description": "A smart entity that implements generic methods such as clone(), toJSON(), and fromJSON().",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.7",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"babel-jest": "^29.7.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.1",
"typescript": "^5.8.2"
},
"dependencies": {
"ajv": "^8.17.1"
}
}