-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 933 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": "@artsy/express-reloadable",
"version": "1.7.0",
"description": "Development tool that enables hot-swapping Express server code without a restart",
"keywords": [
"express",
"hot-swap",
"development tool"
],
"main": "index.js",
"repository": "git@github.com:artsy/express-reloadable.git",
"authors": [
"Artsy <https://artsy.net>",
"Christopher Pappas <damassi.pappas@gmail.com>",
"Eloy Durán <eloy.de.enige@gmail.com>"
],
"scripts": {
"test": "./node_modules/tape/bin/tape ./test/*.js"
},
"homepage": "https://github.com/artsy/express-reloadable",
"license": "MIT",
"dependencies": {
"chalk": "^2.3.1",
"chokidar": "^3.0.0",
"decache": "^4.4.0"
},
"devDependencies": {
"@artsy/auto-config": "1.1.0",
"express": "4.17.3",
"tape": "4.10.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}