UNPKG

1.61 kBJSONView Raw
1{
2 "name": "natural-compare-lite",
3 "version": "0.4.4",
4 "license": "MIT",
5 "description": "Compare strings containing a mix of letters and numbers in the way a human being would in sort order.",
6 "main": "natural-compare.js",
7 "author": "Lauri Rooden <lauri@rooden.ee>",
8 "repository": {
9 "type": "git",
10 "url": "git://github.com/litejs/natural-compare-lite.git"
11 },
12 "bugs": {
13 "url": "https://github.com/litejs/natural-compare-lite/issues"
14 },
15 "scripts": {
16 "build": "node node_modules/buildman/index.js --all",
17 "travis-test": "istanbul cover ./tests/run.js && (coveralls < coverage/lcov.info || exit 0)",
18 "test": "node tests/run.js"
19 },
20 "keywords": [
21 "string",
22 "natural",
23 "order",
24 "sort",
25 "natsort",
26 "natcmp",
27 "compare",
28 "alphanum",
29 "litejs"
30 ],
31 "readmeFilename": "README.md",
32 "devDependencies": {
33 "buildman": "*",
34 "testman": "*"
35 },
36 "buildman": {
37 "min-natural-compare.js": "natural-compare.js"
38 },
39 "testling": {
40 "files": "tests/run.js",
41 "browsers": {
42 "ie": [
43 6,
44 7,
45 8,
46 9,
47 10
48 ],
49 "ff": [
50 3,
51 3.6,
52 4,
53 18,
54 19,
55 "nightly"
56 ],
57 "chrome": [
58 4,
59 10,
60 20,
61 24,
62 25,
63 "canary"
64 ],
65 "safari": [
66 5.1,
67 6
68 ],
69 "opera": [
70 10,
71 11,
72 "11.6",
73 12,
74 "next"
75 ],
76 "android-browser": [
77 4.2
78 ],
79 "iphone": [
80 6
81 ],
82 "ipad": [
83 6
84 ]
85 }
86 }
87}