-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.08 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
{
"name": "Objectinator",
"version": "0.0.1",
"description": "Extend Object behavior with history, mapping, etc.",
"main": "index.js",
"scripts": {
"test": "nodeunit tests/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/csidro/Objectinator.git"
},
"keywords": [
"object",
"history",
"mapping",
"prototype",
"extend"
],
"author": "Oliver Drahota <cydrait@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/csidro/Objectinator/issues"
},
"homepage": "https://github.com/csidro/Objectinator",
"devDependencies": {
"browserify": "^6.3.3",
"chai": "^1.10.0",
"grunt": "^0.4.5",
"grunt-browserify": "^3.2.1",
"grunt-contrib-coffee": "^0.12.0",
"grunt-contrib-uglify": "^0.6.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha": "^0.4.11",
"grunt-newer": "^0.8.0",
"grunt-simple-mocha": "^0.4.0",
"load-grunt-config": "^0.16.0",
"load-grunt-tasks": "^1.0.0",
"mocha": "^2.0.1",
"should": "^4.3.0",
"sinon": "^1.12.1",
"time-grunt": "^1.0.0"
}
}