-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 965 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 965 Bytes
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": "ko-observable",
"description": "Knockout like observables in a tiny library.",
"version": "0.1.1",
"homepage": "https://github.com/fru/observable.js",
"author": {
"name": "Florian Rueberg",
"url": "https://github.com/fru"
},
"repository": {
"type": "git",
"url": "git://github.com/fru/observable.js.git"
},
"bugs": {
"url": "https://github.com/fru/observable.js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/fru/observable.js/blob/master/license.md"
}
],
"engines": {
"node": ">= 0.8.0"
},
"main" : "./src/observable.js",
"scripts": {
"test": "grunt test",
"init": "grunt"
},
"devDependencies": {
"grunt": "~0.4.4",
"grunt-qunit-examples": "^0.4.10",
"grunt-coveralls": "^0.3.0",
"closure-compiler": "^0.2.6",
"grunt-closure-tools": "^0.9.7",
"grunt-docco": "^0.3.3",
"maxmin": "^0.2.2"
},
"dependencies": {}
}