-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "observ-varhash",
"version": "1.0.8",
"description": "An object with observable key value pairs that can be added and removed",
"keywords": [],
"author": "Nicholas Westlake <[email protected]>",
"repository": "git://github.com/nrw/observ-varhash.git",
"main": "index",
"homepage": "https://github.com/nrw/observ-varhash",
"contributors": [
{
"name": "Nicholas Westlake"
}
],
"bugs": {
"url": "https://github.com/nrw/observ-varhash/issues",
"email": "[email protected]"
},
"dependencies": {
"xtend": "~3.0.0",
"observ": "~0.2.0"
},
"devDependencies": {
"observ-struct": "~4.0.0",
"tape": "~2.13.0"
},
"licenses": [
{
"type": "MIT"
}
],
"scripts": {
"start": "node index.js",
"test": "node test/index.js",
"watch": "nodemon -q -x 'tape test/*.js' | tap-colorize",
"travis-test": "istanbul cover ./test/index.js && ((cat coverage/lcov.info | coveralls) || exit 0)",
"cover": "istanbul cover --report none --print detail ./test/index.js",
"view-cover": "istanbul report html && google-chrome ./coverage/index.html",
"test-browser": "testem-browser ./test/browser/index.js",
"testem": "testem-both -b=./test/browser/index.js"
},
"testling": {
"files": "test/index.js",
"browsers": [
"ie/8..latest",
"firefox/16..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}