-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.04 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "extend-with-super",
"version": "2.0.0",
"description": "Extend object literals with function properties to have a _super method that references the original function, instead of overwriting it. (No dependencies, but borrowed methods from underscore.js.)",
"author": {
"name": "Michael Benin",
"email": "[email protected]"
},
"contributors": [],
"scripts": {
"bower": "./node_modules/.bin/bower install",
"precommit": "./node_modules/.bin/grunt pre-commit",
"test": "npm run bower; ./node_modules/.bin/grunt test",
"coverage": "./node_modules/.bin/grunt mochacov",
"build": "./node_modules/.bin/grunt build",
"benchmark": "./node_modules/.bin/grunt benchmark"
},
"main": "lib/extend-with-super.js",
"repository": {
"type": "git",
"url": "https://github.com/michaelbenin/extend-with-super"
},
"bugs": {
"url": "https://github.com/michaelbenin/extend-with-super/issues"
},
"dependencies": {},
"devDependencies": {
"bower": "1.3.12",
"chai": "1.10.0",
"grunt": "0.4.5",
"grunt-benchmark": "0.3.0",
"grunt-browserify": "3.2.1",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-copy": "0.7.0",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-uglify": "0.5.1",
"grunt-jsbeautifier": "0.2.7",
"grunt-jscs": "1.0.0",
"grunt-jsvalidate": "0.2.2",
"grunt-mocha": "0.4.11",
"grunt-mocha-cov": "^0.3.0",
"grunt-mocha-test": "0.11.0",
"husky": "0.6.2",
"load-grunt-tasks": "0.6.0",
"time-grunt": "0.4.0"
},
"keywords": [
"extend",
"super",
"_super",
"this._super",
"this._super()",
"inheritance",
"object",
"literal",
"function",
"extendWithSuper",
"extend-with-super",
"underscore",
"underscorejs",
"plugin"
],
"license": "MIT",
"config": {
"blanket": {
"pattern": [
"lib"
],
"data-cover-never": [
"benchmark",
"dist",
"Gruntfile.js",
"node_modules",
"test"
]
}
}
}