-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 3.54 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "clogy",
"version": "1.3.3",
"description": "A logging library for browsers and nodejs environment",
"homepage": "https://github.com/pgmanutd/clogy",
"author": {
"name": "pgmanutd",
"email": "prashantmanunited@gmail.com",
"url": "https://github.com/pgmanutd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgmanutd/clogy.git"
},
"bugs": {
"url": "https://github.com/pgmanutd/clogy/issues"
},
"main": "lib/clogy.js",
"types": "./index.d.ts",
"engines": {
"node": ">= 0.6.0"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"index.d.ts",
"lib/"
],
"config": {
"dirs": {
"src": "src",
"dest": "dist",
"lib": "lib",
"extensions": "extensions"
},
"env": {
"dev": "development",
"prod": "production",
"test": "test"
},
"main": "babel.runner.js",
"server": "server.babel.js",
"port": 3000
},
"scripts": {
"start": "gulp",
"test": "gulp test",
"eslint": "gulp eslint",
"flow": "gulp flow",
"check": "gulp test && gulp eslint && gulp flow",
"coveralls": "cat ./coverage*/*/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "gulp clean && gulp build && gulp build --type=production && gulp copy",
"patch": "gulp version:patch && npm run build && gulp year:version && npm publish",
"minor": "gulp version:minor && npm run build && gulp year:version && npm publish",
"major": "gulp version:major && npm run build && gulp year:version && npm publish"
},
"keywords": [
"clogy",
"log",
"logger",
"logging",
"browser"
],
"license": "MIT",
"licenses": [{
"type": "MIT",
"url": "https://github.com/pgmanutd/clogy/blob/master/LICENSE"
}],
"dependencies": {},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"del": "^2.2.2",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-lodash-fp": "^2.1.3",
"express": "^4.15.2",
"flow-bin": "^0.45.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.7.0",
"gulp-eslint": "^3.0.1",
"gulp-forever-monitor": "1.0.2",
"gulp-help": "^1.6.1",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "^1.1.0",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.8",
"html-webpack-plugin": "^2.28.0",
"karma": "^1.6.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.3",
"lodash": "^4.17.4",
"mocha": "^3.3.0",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.14",
"remove-empty-directories": "0.0.1",
"require-dir": "^0.3.1",
"run-sequence": "^1.2.2",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0",
"yargs": "^7.1.0"
}
}