-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "nature-js",
"description": "Class system for Javascript supporting private, protected and public scopes, multiple inheritance and class packages",
"version": "0.5.5",
"homepage": "",
"author": {
"name": "Carlos Ouro",
"url": "http://odobo.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Odobo/naturejs.git"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --reporter dot",
"test-coverage": "YOURPACKAGE_COVERAGE=1 ./node_modules/mocha/bin/mocha --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js",
"local-test": "./node_modules/mocha/bin/mocha --reporter spec",
"local-test-coverage": "YOURPACKAGE_COVERAGE=1 ./node_modules/mocha/bin/mocha --reporter html-cov > temp/cov.html ; open temp/cov.html"
},
"devDependencies": {
"mocha": "^2.1.0",
"blanket": "^1.1.6",
"coveralls": "^2.11.2",
"mocha-lcov-reporter": "0.0.1"
},
"license": "MIT",
"main": "src/nature.js",
"engines": {
"node": ">= 0.10"
},
"keywords": [
"classes",
"inheretance",
"multiple inheretance",
"private",
"protected",
"access control",
"access modifiers",
"package",
"factory"
]
}