File size: 784 Bytes
d4b85c0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "name": "semiver",
  "version": "1.1.0",
  "repository": "lukeed/semiver",
  "description": "A tiny (187B) utility to compare semver strings",
  "module": "dist/semiver.mjs",
  "unpkg": "dist/semiver.min.js",
  "main": "dist/semiver.js",
  "types": "semiver.d.ts",
  "license": "MIT",
  "author": {
    "name": "Luke Edwards",
    "email": "luke.edwards05@gmail.com",
    "url": "lukeed.com"
  },
  "engines": {
    "node": ">=6"
  },
  "scripts": {
    "build": "bundt",
    "pretest": "npm run build",
    "test": "tape -r esm test/*.js | tap-spec"
  },
  "files": [
    "*.d.ts",
    "dist"
  ],
  "keywords": [
    "compare",
    "semver",
    "sort"
  ],
  "devDependencies": {
    "bundt": "^0.4.0",
    "esm": "^3.2.0",
    "tap-spec": "^5.0.0",
    "tape": "^4.9.1"
  }
}