-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "lowclass",
"version": "8.0.2",
"description": "JavaScript/TypeScript class inheritance tools.",
"author": "Joe Pea <joe@trusktr.io>",
"license": "MIT",
"homepage": "http://github.com/trusktr/lowclass#readme",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"LUME SCRIPTS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX": "",
"clean": "lume clean",
"build": "lume build",
"dev": "lume dev",
"typecheck": "lume typecheck",
"typecheck:watch": "lume typecheckWatch",
"test": "lume test",
"test:watch": "lume test --watch",
"prettier": "lume prettier",
"prettier:check": "lume prettierCheck",
"release:patch": "lume releasePatch",
"release:minor": "lume releaseMinor",
"release:major": "lume releaseMajor",
"version": "lume versionHook",
"postversion": "lume postVersionHook",
"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX OTHER SCRIPTS": "",
"serve": "browser-sync start --server ./ --files dist --port 12345"
},
"devDependencies": {
"@lume/cli": "^0.14.0",
"browser-sync": "^2.26.7",
"prettier": "3.0.3",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/trusktr/lowclass.git"
},
"bugs": {
"url": "/~https://github.com/trusktr/lowclass/issues"
},
"keywords": [
"classes",
"es5 classes",
"classical inheritance",
"classical",
"prototype",
"prototypical inheritance",
"prototypes",
"prototype classes",
"private",
"protected",
"access specifiers",
"access modifiers"
]
}