-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "mdlog",
"version": "1.0.3",
"description": "Markdown on `console.log`",
"author": "TSUYUSATO Kitsune <make.just.on@gmail.com>",
"keywords": [
"markdown",
"console",
"log",
"browser",
"develop"
],
"repository": {
"type": "git",
"url": "https://github.com/MakeNowJust/mdlog.git"
},
"homepage": "https://github.com/MakeNowJust/mdlog",
"bugs": "https://github.com/MakeNowJust/mdlog/issues",
"license": "MIT",
"main": "index.js",
"files": [
"README.md",
"index.js",
"browser.js",
"override.js",
"es5",
"es6",
"config",
"color"
],
"browser": "./browser.js",
"scripts": {
"build": "babel --source-maps inline --out-dir ./es5 ./es6",
"watch": "babel -w --source-maps inline --out-dir ./es5 ./es6",
"sample:node": "node sample/readme.js",
"sample:browser": "webpack-dev-server --content-base ./sample --config ./sample/webpack.config.js"
},
"dependencies": {
"color-string": "^0.3.0",
"lodash": "^3.9.2",
"mdast": "^0.21.1"
},
"devDependencies": {
"babel": "^5.4.7",
"json-loader": "^0.5.1",
"webpack-dev-server": "^1.9.0"
}
}