-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.29 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.29 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
{
"name": "scribbly",
"version": "1.0.0-beta.3",
"description": "Minimalistic and flexible logging tool",
"main": "index.js",
"scripts": {
"test": "run test"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pawelgalazka/scribbly.git"
},
"keywords": [
"logger",
"logging",
"log",
"debug"
],
"author": "Pawel Galazka",
"license": "MIT",
"bugs": {
"url": "https://github.com/pawelgalazka/scribbly/issues"
},
"homepage": "https://github.com/pawelgalazka/scribbly#readme",
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.16.0",
"babel-eslint": "7.0.0",
"babel-jest": "16.0.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-stage-2": "6.16.0",
"babel-register": "6.16.3",
"eslint": "3.6.1",
"eslint-config-standard": "6.2.0",
"eslint-plugin-promise": "2.0.1",
"eslint-plugin-standard": "2.0.1",
"jest": "16.0.2",
"runjs": "2.5.0"
},
"babel": {
"presets": [
"babel-preset-es2015",
"babel-preset-stage-2"
]
},
"eslintConfig": {
"extends": [
"eslint-config-standard"
],
"parser": "babel-eslint"
},
"dependencies": {
"lodash.escaperegexp": "4.1.2"
}
}