forked from kutuluk/loglevel-plugin-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.8 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
{
"name": "loglevel-plugin-remote",
"description": "A loglevel plugin for sending browser logs to a server",
"author": {
"name": "kutuluk"
},
"keywords": [
"log",
"logger",
"logging",
"browser",
"loglevel",
"loglevel-plugin"
],
"homepage": "https://github.com/kutuluk/loglevel-plugin-remote",
"bugs": {
"url": "https://github.com/kutuluk/loglevel-plugin-remote/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:kutuluk/loglevel-plugin-remote.git"
},
"license": "MIT",
"version": "0.6.2",
"main": "./lib/loglevel-plugin-remote",
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"ie >= 7"
]
}
}
]
],
"plugins": [
"add-module-exports",
"transform-es2015-modules-umd"
]
},
"scripts": {
"eslint": "eslint src/remote.js",
"test": "mocha",
"babel": "babel ./src/remote.js --out-file ./lib/loglevel-plugin-remote.js",
"uglifyjs": "uglifyjs ./lib/loglevel-plugin-remote.js -o ./dist/loglevel-plugin-remote.min.js -c -m reserved=[remote]",
"build": "npm run babel && npm run uglifyjs",
"publish-to-npm": "npm install && npm run build && npm publish"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"loglevel": "^1.5.0",
"loglevel-plugin-mock": "^0.1.0",
"loglevel-plugin-prefix": "^0.5.3",
"mocha": "^4.0.0",
"sinon": "^4.0.1",
"uglify-js": "^3.1.2"
}
}