-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "version_compare",
"version": "0.0.3",
"description": "Compare version strings.",
"main": "version_compare.js",
"scripts": {
"pretest": "npm install",
"test": "mocha tests/mocha.js"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"repository": {
"type": "git",
"url": "https://github.com/gabe0x02/version_compare.git"
},
"keywords": [
"version",
"compare"
],
"contributors": [
"Gabriel Littman (https://github.com/gabe0x02)",
"Jon (http://stackoverflow.com/users/50079/jon)",
"ripper234 (http://stackoverflow.com/users/11236/ripper234)"
],
"license": "CC-BY-SA",
"bugs": {
"url": "https://github.com/gabe0x02/version_compare/issues"
},
"homepage": "https://github.com/gabe0x02/version_compare",
"devDependencies": {
"karma": "^0.12.24",
"karma-chrome-launcher": "^0.1.5",
"karma-mocha": "^0.1.9",
"mocha": "^2.0.1",
"should": "^4.1.0"
}
}