-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "mobx-logger",
"version": "0.9.0",
"description": "Mobx Logger",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf dist lib",
"build": "yarn build:lib && yarn build:umd",
"build:lib": "babel src --out-dir lib && cp src/index.d.ts lib/index.d.ts",
"build:umd": "webpack --mode production",
"prepare": "yarn clean && yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/winterbe/mobx-logger.git"
},
"author": "Benjamin Winterberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/winterbe/mobx-logger/issues"
},
"files": [
"lib/",
"mobx-logger.umd.js"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"mobx": "^4.1.0",
"rimraf": "^2.6.2",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13"
},
"dependencies": {},
"peerDependencies": {
"mobx": ">= 4.0.0"
},
"keywords": [
"mobx",
"mobx-logger",
"logger",
"logging",
"log",
"debug",
"state management"
],
"typings": "lib/index.d.ts"
}