-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "consistent.js",
"version": "0.14.1",
"description": "A small and simple Javascript framework to enable an abstract model to be synced with the DOM.",
"author": "Karl von Randow",
"license": "Apache License Version 2.0",
"repository": {
"type": "git",
"url": "git://github.com/karlvr/consistent.js.git"
},
"homepage": "http://github.com/karlvr/consistent.js",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
},
"devDependencies": {
"karma": "~0.10"
},
"scripts": {
"test": "test/run-tests.sh"
},
"testling" : {
"scripts": [
"test/lib/jasmine/jasmine.js",
"test/lib/jasmine-reporters/jasmine.tap_reporter.js",
"test/lib/jasmine-jquery/jasmine-jquery.js",
"src/consistent.js",
"src/consistent-expressions.js",
"bower_components/jquery/jquery.min.js",
"bower_components/hogan/web/builds/2.0.0/hogan-2.0.0.js",
"src/jquery.consistent.js",
"test/testling/config.js",
"test/consistent.tests.js",
"test/lib/json2.js",
"test/**/*Spec.js",
"test/testling/runner.js"
],
"browsers": {
"ie": [ 6, 7, 8, 9, 10 ],
"ff": [ 3.0, 3.5, 10, 19, "nightly" ],
"chrome": [ 4, 15, 23, 25, "canary" ],
"opera": [ 11, 12, "next" ],
"safari": [ 4, 5.1, 6 ],
"iphone": [ 6 ],
"ipad": [ 6 ],
"android": [ 4.2 ]
}
}
}