-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "objex",
"version": "0.4.1",
"description": "Easy prototype and static methods inheritance via inheritedBy method",
"main": "./lib/objex.js",
"scripts": {
"test": "jshint --config ./.jshintrc ./lib && jscs ./lib ./test && mocha -R spec -u exports ./test"
},
"repository": {
"type": "git",
"url": "git://github.com/nodules/objex.git"
},
"keywords": [
"prototype",
"object",
"inheritance"
],
"author": "Phillip Kovalev <[email protected]> (https://github.com/kaero)",
"maintainers": [
"Phillip Kovalev <[email protected]> (https://github.com/kaero)"
],
"contributors": [
"Alexey Rybakov <[email protected]> (https://github.com/flackus)",
"Sofya Ilinova <[email protected]> (https://github.com/isquariel)"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/nodules/objex/master/LICENSE"
}
],
"devDependencies": {
"jshint": "^2.1.0",
"jscs": "^1.13.0",
"mocha": "^1.20.1",
"chai": "^1.9.1"
},
"dependencies": {
"extend": "^3.0.0"
}
}