forked from ember-cli/core-object
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "core-object",
"version": "2.0.5",
"description": "A lightweight implementation of OOP Class in JavaScript",
"main": "core-object.js",
"scripts": {
"test": "mocha tests/**/*-test.js",
"test:debug": "mocha debug tests/**/*-test.js",
"build:browser": "browserify core-object.js -o browser.js",
"bench:browser": "browserify benchmarks/index.js -o tmp/bench.js",
"bench:node": "node benchmarks/index"
},
"repository": {
"type": "git",
"url": "https://github.com/ember-cli/core-object.git"
},
"author": "Ember core team and ember cli contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/ember-cli/core-object/issues"
},
"homepage": "https://github.com/ember-cli/core-object",
"devDependencies": {
"backbone-metal": "^0.6.2",
"benchmark": "^2.1.0",
"browserify": "^13.0.1",
"klass": "^1.4.0",
"microtime": "^2.1.1",
"mocha": "^2.5.3",
"traceur-runtime": "0.0.59",
"uberproto": "^1.1.2"
},
"dependencies": {
"chalk": "^1.1.3"
}
}