-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 984 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 984 Bytes
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": "nci-projects-reloader",
"version": "2.0.0",
"description": "On disk changes projects reloader for nci",
"main": "lib/index.js",
"scripts": {
"lint": "jshint ./",
"test": "mocha --bail --reporter=spec --timeout=10000 --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/node-ci/nci-projects-reloader.git"
},
"keywords": [
"nciplugin",
"reload",
"config",
"project"
],
"author": "Oleg Korobenko <oleg.korobenko@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-ci/nci-projects-reloader/issues"
},
"homepage": "https://github.com/node-ci/nci-projects-reloader",
"dependencies": {
"chokidar": "3.3.1"
},
"peerDependencies": {
"nci": ">=1.0.11 <1.1.0 || 2.x.x"
},
"devDependencies": {
"expect.js": "0.3.1",
"jshint": "2.11.0",
"mocha": "7.1.1",
"proxyquire": "1.7.4",
"sinon": "1.17.2"
},
"engines": {
"node": ">=10.0.0"
}
}