-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 887 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
{
"name": "is-module-installed",
"description": "Check if a module is installed in your project",
"version": "2.0.21",
"author": {
"email": "[email protected]",
"name": "Zac Anger",
"url": "https://zacanger.com"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"preversion": "npm t",
"test": "npm run test:lint && npm run test:tape",
"test:lint": "standard",
"test:tape": "node index.test.js"
},
"homepage": "https://github.com/zacanger/is-module-installed#readme",
"repository": {
"type": "git",
"url": "https://github.com/zacanger/is-module-installed.git"
},
"bugs": "https://github.com/zacanger/is-module-installed/issues",
"keywords": [
"installed",
"module"
],
"devDependencies": {
"sortpack": "2.3.2",
"standard": "17.0.0",
"tape": "5.6.1"
},
"engines": {
"node": ">=10.0.0"
}
}