-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.5 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mktmpio",
"version": "1.0.0-10",
"description": "CLI and client library for mktmp.io service",
"main": "index.js",
"scripts": {
"install": "node scripts/post.js",
"uninstall": "node scripts/post.js",
"pretest": "eslint --ignore-path .gitignore ./",
"test": "tap --save failed-tests.txt --coverage test/test-*",
"coverage": "tap --coverage-report=lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mktmpio/node-mktmpio.git"
},
"keywords": [
"testing",
"database",
"redis",
"mysql",
"postgres",
"temp"
],
"author": "Ryan Graham <[email protected]>",
"license": "Artistic-2.0",
"bugs": {
"url": "https://github.com/mktmpio/node-mktmpio/issues"
},
"homepage": "https://github.com/mktmpio/node-mktmpio#readme",
"devDependencies": {
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^1.0.0",
"tap": "^8.0.0"
},
"dependencies": {
"debug": "^2.2.0",
"faye-websocket": "^0.11.0",
"js-yaml": "^3.3.1",
"lodash": "^4.13.1",
"userhome": "^1.0.0"
},
"bin": {
"mktmpio": "bin/mktmpio.js"
},
"directories": {
"test": "test"
},
"eslintConfig": {
"extends": "standard",
"rules": {
"semi": [
2,
"always"
],
"space-before-function-paren": [
2,
"never"
],
"comma-dangle": [
2,
"always-multiline"
]
}
}
}