-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 840 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
{
"name": "reinstall-node-modules",
"version": "2.0.0",
"description": "(re)install node modules only if they have changed",
"author": "Kai Falkowski",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"test": "jest"
},
"bin": {
"reinstall-node-modules": "./bin/reinstall-node-modules.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SassNinja/reinstall-node-modules.git"
},
"keywords": [
"npm",
"yarn",
"install",
"reinstall",
"rebuild",
"changed",
"modified",
"hook",
"lightweight",
"zero-dependency"
],
"dependencies": {
"node-notifier": "^7.0.1"
},
"devDependencies": {
"jest": "^26.0.1"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}