forked from tkellen/js-matchdep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 949 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
42
{
"name": "@fomantic/matchdep",
"description": "Use micromatch to filter npm module dependencies by name.",
"version": "2.0.1",
"homepage": "https://github.com/fomantic/js-matchdep",
"author": {
"name": "Tyler Kellen",
"url": "http://goingslowly.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/fomantic/js-matchdep.git"
},
"bugs": {
"url": "https://github.com/tkellen/js-matchdep/issues"
},
"license": "MIT",
"main": "lib/matchdep",
"engines": {
"node": ">= 12"
},
"scripts": {
"test": "grunt"
},
"dependencies": {
"findup-sync": "^5.0.0",
"micromatch": "^4.0.5",
"resolve": "^1.22.1",
"stack-trace": "^0.0.10"
},
"devDependencies": {
"grunt": "^1.5.3",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^4.0.0"
},
"keywords": [
"package.json",
"dependencies",
"devDependencies",
"peerDependencies"
]
}