This repository has been archived by the owner on Sep 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json.save
63 lines (62 loc) · 1.77 KB
/
package.json.save
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": "java-class",
"version": "3.0.0",
"description": "Class.js is a Javascript library designed to allow easy, non-obtrusive creation of Java-like classes without requiring a cross-compiler, and without otherwise interfering with the capabilities of Javascript.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://www.github.com/rdking/Class.js.git"
},
"keywords": [
"object-oriented",
"oop",
"inheritance",
"class.js",
"class-js",
"classjs",
"mixin",
"prototype",
"superclass",
"super",
"subclass",
"class",
"private",
"protected",
"public",
"static",
"abstract",
"final",
"delegate",
"property"
],
"dependencies": {
"j5g3.jsdoc-parser": "j5g3/jsdoc-parser",
"j5g3.inference": "j5g3/inference",
"j5g3.docma": "j5g3/docma"
},
"author": "Ranando D. King <kingmph@gmail.com> (https://thekingsnotice.blogspot.com)",
"license": "Apache 2.0",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 5
},
"env": {
"node": true,
"browser": true
},
"extends": "eslint:recommended",
"rules": {
"no-console": "off",
"no-prototype-builtins": "off",
"no-template-curly-in-string": "error",
"no-unsafe-negation": "error",
"valid-jsdoc": "warn",
"array-callback-return": "error",
"consistent-return": "error",
"curly": "off",
"no-mixed-spaces-and-tabs": ["error", "smart-tabs"]
}
}
}