-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "hg-plus",
"version": "1.2.3",
"description": "A Mercurial client for Node",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/node-hg-plus"
},
"keywords": [
"mercurial",
"hg",
"client",
"gitify"
],
"author": "Justin Dalrymple <[email protected]>",
"license": "MIT",
"scripts": {
"test": "nyc ./node_modules/tape/bin/tape tests/**/*.js",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"nyc": "^11.7.1",
"tape": "^4.9.0"
},
"dependencies": {
"blue-tape": "^1.0.0",
"bluebird": "^3.5.1",
"dir-compare": "^1.4.0",
"fs-extra": "^6.0.1",
"globby": "^9.1.0",
"is-there": "^4.4.3",
"shortid": "^2.2.8",
"tempy": "^0.3.0",
"winston": "^2.4.2"
}
}