-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 898 Bytes
/
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
{
"name": "extend",
"version": "0.1.1",
"description": "Make one class (constructor function) inherited from another",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/gamtiq/extend.git"
},
"keywords": [
"extend",
"inherit",
"prototype",
"inheritance",
"class"
],
"author": "Denis Sikuler",
"license": "MIT",
"bugs": {
"url": "https://github.com/gamtiq/extend/issues"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-uglify": "~0.2.4",
"grunt-umd": "~1.7.0",
"grunt-mocha-cli": "~1.5.0"
},
"jam": {
"main": "dist/extend.js",
"include": [
"dist",
"README.md"
]
},
"categories": [
"Utilities"
],
"jspm": {
"format": "cjs"
}
}