forked from kutuluk/loglevel-plugin-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "loglevel-plugin-remote",
"description": "A loglevel plugin for sending browser logs to a server",
"author": {
"name": "kutuluk"
},
"keywords": [
"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.8",
"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 eslint && npm run babel && npm run uglifyjs",
"release": "npm install && npm run build && npm test && 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.7.0",
"chai": "^4.2.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"loglevel": "^1.6.1",
"loglevel-plugin-mock": "^0.1.0",
"mocha": "^5.2.0",
"sinon": "^6.3.4",
"uglify-js": "^3.4.9"
},
"dependencies": {}
}