-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.14 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "replocal",
"version": "1.0.0",
"description": "Proxy for replacing web contents with local files.",
"main": "lib",
"bin": {
"replocal": "bin/replocal"
},
"files": [
"bin",
"lib"
],
"scripts": {
"test": "npm run lint && npm run test-unit",
"lint": "eslint lib 'bin/*' test",
"test-unit": "istanbul cover _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/htanjo/replocal.git"
},
"keywords": [
"proxy",
"cli"
],
"author": "Hiroyuki Tanjo",
"license": "MIT",
"bugs": {
"url": "https://github.com/htanjo/replocal/issues"
},
"homepage": "https://github.com/htanjo/replocal",
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"hoxy": "^3.1.3",
"lodash.merge": "^4.0.1"
},
"devDependencies": {
"chai": "^4.0.0",
"coveralls": "^2.11.4",
"eslint": "^3.18.0",
"eslint-config-xo-space": "^0.16.0",
"istanbul": "^0.4.0",
"mocha": "^3.0.0",
"request": "^2.65.0"
},
"eslintConfig": {
"extends": "xo-space"
}
}