-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 2.08 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": "pen",
"version": "2.2.0",
"description": "A better Markdown previewer",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run build && npm run mocha",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js --ignore-path .gitignore .",
"build": "NODE_ENV=production webpack -p",
"mocha": "mocha -r babel-core/register -r babel-polyfill -r test/setup.js test/**/test-*",
"release": "npm run build && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utatti/pen.git"
},
"keywords": [
"markdown",
"previewer"
],
"author": "Jun <noraesae+dev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/utatti/pen/issues"
},
"homepage": "https://github.com/utatti/pen",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.7",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"github-markdown-css": "^2.9.0",
"html-webpack-inline-source-plugin": "^0.0.9",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^9.4.2",
"json-loader": "^0.5.7",
"mocha": "^5.2.0",
"prettier": "^1.12.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-render-html": "^0.6.0",
"request": "^2.87.0",
"rimraf": "^2.5.4",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-fail-plugin": "^2.0.0"
},
"dependencies": {
"highlight.js": "^9.9.0",
"markdown-it": "^8.2.2",
"markdown-it-anchor": "^5.0.2",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-emoji": "^1.2.0",
"markdown-it-highlightjs": "^2.0.0",
"opn": "^4.0.2",
"prop-types": "^15.6.0",
"simple-pandoc": "^0.1.0",
"websocket": "^1.0.26",
"yargs": "^6.6.0"
},
"preferGlobal": true,
"bin": {
"pen": "./bin/pen"
}
}