-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "li-log",
"version": "0.9.6",
"description": "Little tiny logger",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec",
"testWin": "node_modules/mocha/bin/_mocha — -R spec test/*",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"coverWin": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"build": "rollup -c",
"buildBrowser": "rollup -c rollup.config.browser.js",
"buildBrowserMin": "rollup -c rollup.config.browser.minified.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreydos/li-log.git"
},
"keywords": [
"logger",
"log",
"console",
"color-console"
],
"author": "“Andrey <“andrey.novator@gmail.com”> (http://www.andrey.pp.ua)",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreydos/li-log/issues"
},
"engines": {
"node": ">=4.2.4"
},
"homepage": "https://github.com/andreydos/li-log#readme",
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-preset-es2015-rollup": "^3.0.0",
"builtin-modules": "^1.1.1",
"chai": "^4.1.2",
"coveralls": "^2.13.3",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-import": "^2.12.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"rollup": "^0.50.1",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-babel-minify": "^3.1.2",
"rollup-plugin-eslint": "^4.0.0"
},
"dependencies": {
"format-date-time": "^0.2.0"
}
}