forked from caiogondim/logdown.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "logdown",
"version": "3.1.0",
"description": "Debug utility with markdown support that runs on browser and server",
"main": "src/node.js",
"browser": "dist/logdown.min.js",
"files": [
"src/",
"test/",
"dist/"
],
"scripts": {
"build": "browserify src/browser.js --standalone logdown > dist/logdown.js && cp dist/logdown.js example/lib/logdown.js && uglifyjs --compress --mangle --screw-ie8 -- dist/logdown.js > dist/logdown.min.js && gzip dist/logdown.min.js --stdout --best > dist/logdown.min.js.gzip",
"preversion": "npm run test",
"test": "jest && npm run test:lint",
"test:debug": "node --inspect --debug-brk ./node_modules/.bin/jest --runInBand",
"test:lint": "standard './src/**/*.js' './test/**/*.js'",
"test:lint:fix": "standard './src/**/*.js' './test/**/*.js' --fix",
"version": "npm run build && git add ."
},
"repository": {
"type": "git",
"url": "https://github.com/caiogondim/logdown"
},
"keywords": [
"log",
"markdown",
"debug",
"console",
"info",
"error",
"logging"
],
"author": "Caio Gondim <[email protected]> (http://caiogondim.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/caiogondim/logdown/issues"
},
"homepage": "https://github.com/caiogondim/logdown",
"devDependencies": {
"browserify": "^14.4.0",
"codecov": "^2.2.0",
"jest": "^20.0.4",
"standard": "^10.0.2",
"uglify-js": "^3.0.23"
},
"jest": {
"roots": [
"test/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
]
},
"dependencies": {
"chalk": "^2.0.1"
}
}