-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.96 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "remedy",
"version": "3.0.2",
"description": "emitting middleware for file removing",
"main": "server/index.js",
"scripts": {
"test": "tape test/**/*.js",
"coverage": "nyc npm test",
"report": "nyc report --reporter=text-lcov | coveralls",
"lint": "redrun lint:*",
"lint:client": "eslint --env browser --rule 'no-console:0' client",
"lint:server": "eslint server",
"build": "redrun build:*",
"build-progress": "webpack --progress",
"build:client": "npm run build-progress -- --mode production",
"build:client:dev": "NODE_ENV=development npm run build-progress -- --mode development",
"watcher": "nodemon -w client -w server --exec",
"watch:test": "npm run watcher -- 'npm test'",
"watch:lint": "npm run watcher -- 'npm run lint'",
"watch:client": "redrun build:client -- --watch",
"watch:client:dev": "redrun build:client:dev -- --watch",
"wisdom": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/cloudcmd/node-remedy.git"
},
"keywords": [
"file",
"remove",
"emitter",
"middleware"
],
"author": "cloudcmd <mnemonic.enemy@gmail.com> (http://cloudcmd.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudcmd/node-remedy/issues"
},
"homepage": "https://github.com/cloudcmd/node-remedy",
"engines": {
"node": ">=4"
},
"dependencies": {
"mellow": "~2.0.0",
"remy": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.1",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-preset-env": "^1.6.0",
"coveralls": "^3.0.0",
"emitify": "^3.1.0",
"eslint": "^4.1.1",
"express": "^4.14.0",
"mkdirp": "^0.5.1",
"nyc": "^11.0.2",
"redrun": "^6.0.0",
"rimraf": "^2.6.1",
"socket.io": "^2.0.1",
"socket.io-client": "^2.0.1",
"tape": "^4.6.0",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10"
}
}