-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.22 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.22 KB
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
{
"name": "ts-serializable",
"version": "4.5.12",
"author": "Eugene Labutin",
"license": "MIT",
"homepage": "https://github.com/LabEG/Serializable#readme",
"description": "Serialization and deserialization for classes",
"main": "./dist/index.js",
"type": "module",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md"
],
"repository": {
"type": "git",
"url": " git@github.com:LabEG/Serializable.git"
},
"bugs": {
"url": "https://github.com/LabEG/Serializable/issues"
},
"lint-staged": {
"./(src|tests)/**/*.(ts|tsx|js|jsx)": [
"eslint --fix"
]
},
"scripts": {
"lint": "eslint --fix ./src/ ./tests/",
"test": "node --import ./register-ts-node.js --test --test-reporter=spec --test-reporter-destination=stdout \"tests/**/*.spec.ts\"",
"test-watch": "node --watch --import ./register-ts-node.js --test --test-reporter=spec --test-reporter-destination=stdout \"tests/**/*.spec.ts\"",
"coverage": "node --import ./register-ts-node.js --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info \"tests/**/*.spec.ts\"",
"build": "tsc --project tsconfig.build.json && node ./dist/index.js",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"release": "cliff-jumper --name 'ts-serializable' --package-path '.' --no-skip-changelog --no-skip-tag",
"prepare": "husky"
},
"peerDependencies": {
"reflect-metadata": ">=0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@favware/cliff-jumper": "^6.0.0",
"@labeg/code-style": "^6.10.20",
"@swc/core": "^1.15.13",
"@types/chai": "^5.2.3",
"chai": "^6.2.2",
"husky": "^9.1.7",
"ts-node": "^10.9.2",
"lint-staged": "^16.2.7",
"reflect-metadata": "^0.2.2",
"typescript": "^5.9.3"
},
"keywords": [
"serialization",
"deserialization"
]
}