-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.18 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pretty-web-console",
"version": "0.0.0-development",
"description": "Bored of console.log? It's time to prettify it!",
"main": "dist/pretty-web-console.js",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "rm -rf dist/",
"build": "webpack -p --bail",
"build:lib": "LIB=true webpack -p --bail",
"pretest": "yarn build",
"lint": "eslint src/ test/ && flow",
"test": "yarn lint && ava",
"preexample": "yarn build",
"example": "cd example/ && webpack && http-server dist/",
"prerelease": "yarn build && yarn build:lib",
"release": "semantic-release pre && npm publish && semantic-release post",
"commitmsg": "validate-commit-msg"
},
"repository": {
"type": "git",
"url": "https://github.com/bbmoz/pretty-web-console.git"
},
"keywords": [
"pretty",
"console",
"log",
"debug",
"color",
"browser",
"pwc",
"logger",
"output",
"web",
"trace",
"console.log"
],
"author": "Joe Lee <https://github.com/bbmoz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bbmoz/pretty-web-console/issues"
},
"homepage": "https://github.com/bbmoz/pretty-web-console",
"ava": {
"files": [
"test/**/*.js"
],
"source": [
"dist/**/*.js"
],
"failWithoutAssertions": true,
"powerAssert": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"eslint": "^4.1.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.50.0",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.14.0",
"semantic-release": "^6.3.2",
"sinon": "^2.1.0",
"validate-commit-msg": "^2.12.1",
"webpack": "^3.1.0"
}
}