-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 908 Bytes
/
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
{
"name": "slimver",
"version": "1.0.0",
"description": "Slimver parser, packer, unpacker and range creator",
"main": "index.js",
"scripts": {
"test": "tape test/all.js",
"gendocs": "gendocs > README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/DamonOehlman/slimver.git"
},
"keywords": [
"slimver",
"version",
"semver"
],
"author": "Damon Oehlman <damon.oehlman@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DamonOehlman/slimver/issues"
},
"homepage": "https://github.com/DamonOehlman/slimver",
"devDependencies": {
"tape": "^2"
},
"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"
]
}
}