forked from webcerebrium/react-logger-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "@mjeghers/react-logger-lib",
"version": "0.1.2",
"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 --require babel-register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-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",
"babel-register": "^6.26.0",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"mocha": "^9.0.1",
"webpack": "^2.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeghers/react-logger-lib.git"
},
"keywords": [
"react",
"reactjs",
"console",
"log",
"logger",
"logging",
"es6",
"es7",
"javascript",
"universal",
"umd",
"commonjs"
],
"license": "ISC",
"author": "Mark Jeghers <[email protected]> (https://www.t4p.com/)",
"bugs": {
"url": "https://github.com/jeghers/react-logger-lib/issues"
},
"homepage": "https://github.com/jeghers/react-logger-lib#readme"
}