-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.72 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pavlog",
"version": "4.0.5",
"description": "Unified logging for npm modules.",
"author": "Alex Kern <[email protected]> (http://kern.io)",
"homepage": "https://github.com/pavlovml/pavlog#readme",
"main": "dist/index.js",
"license": "BSD-3-Clause",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pavlovml/pavlog.git"
},
"bugs": {
"url": "https://github.com/pavlovml/pavlog/issues"
},
"files": [
"LICENSE",
"README.md",
"dist/"
],
"dependencies": {
"babel-runtime": "^6.9.2",
"debug": "^2.2.0",
"lodash": "^3.10.1",
"morgan": "^1.6.1"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-eslint": "^6.0.5",
"babel-jest": "^12.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^2.13.1",
"eslint-plugin-babel": "^2.1.1",
"jest-cli": "^13.0.0",
"mockdate": "^1.0.4",
"node-mocks-http": "^1.5.2",
"nodemon": "^1.7.1",
"standard": "^7.1.2",
"supertest": "^1.2.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports",
"lodash",
"transform-runtime"
]
},
"standard": {
"parser": "babel-eslint",
"global": [
"jest",
"describe",
"it",
"pit",
"expect",
"afterEach",
"beforeEach"
]
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/babel-runtime",
"<rootDir>/node_modules/core-js"
],
"testPathDirs": [
"src"
]
}
}