This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "react-logger-lib",
"version": "1.0.5",
"description": "ReactJS / ES6 / ES7 logging - lightweight library with managed logging levels, similar to simple logging facades in other languages",
"main": "lib/library.js",
"scripts": {
"build": "webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"webpack": "^2.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webcerebrium/react-logger-lib.git"
},
"keywords": [
"react",
"reactjs",
"console",
"log",
"logger",
"logging",
"es6",
"es7",
"javascript",
"universal",
"umd",
"commonjs"
],
"license": "ISC",
"author": "Web Cerebrium <webcerebrium@gmail.com> (https://webcerebrium.com/)",
"bugs": {
"url": "https://github.com/webcerebrium/react-logger-lib/issues"
},
"homepage": "https://github.com/webcerebrium/react-logger-lib#readme"
}