-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 918 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
{
"name": "semver-intersect",
"version": "1.5.0",
"description": "Get the intersection of multiple semver ranges",
"keywords": [
"semver"
],
"bugs": "https://github.com/snyamathi/semver-intersect/issues",
"repository": {
"type": "git",
"url": "[email protected]:snyamathi/semver-intersect.git"
},
"license": "MIT",
"author": "Suneil Nyamathi <[email protected]>",
"contributors": [],
"main": "semver-intersect.js",
"scripts": {
"build": "babel src -d .",
"lint": "eslint .",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "jest"
},
"dependencies": {
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"eslint": "^6.8.0",
"jest": "^25.4.0"
}
}