-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "@renderorange/class-types",
"version": "2.0.0",
"description": "Base class for runtime type checking in JavaScript",
"author": "Blaine Motsinger <blaine@renderorange.com>",
"license": "MIT",
"main": "src/class_types.js",
"files": [
"src/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"type-checking",
"validation",
"javascript",
"class",
"runtime-types",
"type-validation",
"type-checker"
],
"repository": {
"type": "git",
"url": "git+https://github.com/renderorange/class-types.git"
},
"bugs": {
"url": "https://github.com/renderorange/class-types/issues"
},
"homepage": "https://github.com/renderorange/class-types#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "node node_modules/eslint/bin/eslint.js . --fix",
"lint:check": "node node_modules/eslint/bin/eslint.js ."
},
"devDependencies": {
"eslint": "^9.0.0",
"@stylistic/eslint-plugin": "^3.0.0",
"jest": "^29.7.0"
}
}