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
/
package.json
68 lines (68 loc) · 1.65 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
61
62
63
64
65
66
67
68
{
"name": "java-class",
"version": "3.1.6",
"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": "for file in $(ls -1 tests/*.spec.js); do mocha $file; done;"
},
"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"
],
"devDependencies": {
"j5g3.docma": "j5g3/docma",
"j5g3.inference": "j5g3/inference",
"j5g3.jsdoc-parser": "j5g3/jsdoc-parser",
"mocha": "^5.0.0",
"should": "^13.2.1"
},
"author": "Ranando D. King <kingmph@gmail.com> (https://thekingsnotice.blogspot.com)",
"license": "Apache-2.0",
"main": "Class.js",
"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"
]
}
}
}