-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "logatim",
"description": "Isomorphic logger which implements log levels and ANSI styles",
"main": "dist/logatim.umd.min.js",
"scripts": {
"playground": "webpack --config demo.config.js",
"start": "npm run playground -- --debug && node-repl demo/bundle.js",
"test": "tap test/test-*.js -R spec",
"posttest": "npm run standard",
"test-ci": "COVERALLS_REPO_TOKEN=aZSRN0p0eQPw5sMOpQPcS5NaHjSyGlIwB tap test/test-*.js --cov",
"standard": "standard --verbose | snazzy",
"build": "webpack -p && npm run test-ci",
"demo": "npm run playground -- --watch & open demo/playground.html",
"push": "npm test && npm run build && git add -A && git cz && git push origin HEAD",
"changelog": "changelog edravis/logatim all -m > CHANGELOG.md",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "Rubén Sospedra <[email protected]> (http://sospedra.me)",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "^1.1.5",
"node-repl": "^2.0.2",
"open": "0.0.5",
"parallel-webpack": "^1.0.0",
"semantic-release": "^4.3.5",
"snazzy": "^4.0.0",
"standard": "^7.0.1",
"tap": "^5.4.2",
"webpack": "^1.12.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edravis/logatim.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/edravis/logatim/issues"
},
"homepage": "https://github.com/edravis/logatim#readme",
"directories": {
"test": "test"
},
"files": [
"lib",
"test",
"dist"
],
"keywords": [
"logger",
"logging",
"log",
"console.log",
"colors",
"styles",
"levels",
"isomorphic",
"server",
"side",
"client",
"side",
"node",
"browser"
]
}