-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 KB
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
{
"name": "jsNotebook",
"description": "Interactive Javascript notebook using Markdown+Javascript+Node.js",
"homepage": "https://github.com/djulien/jsNotebook#readme",
"author": "djulien",
"license": "TBD",
"version": "0.20.7",
"main": "index.html",
"private": "true",
"keywords": [
"interactive",
"Javascript",
"notebook",
"markdown"
],
"repository": {
"type": "git",
"url": "git+https://github.com/djulien/jsNotebook.git"
},
"engines": {
"node": ">= 10.0.0"
},
"bugs": {
"url": "https://github.com/djulien/jsNotebook/issues"
},
"scripts": {
"dist-list": "ls -l ./dist 2> /dev/null",
"tree-list": "tree -I node_modules",
"clean": "rm -f ./dist/*",
"webpack": "webpack --config webpack.cfg",
"build": "run-s webpack dist-list"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"showdown": "^1.9.1",
"showdown-ghost-footnotes": "0.0.6",
"showdown-prettify": "^1.3.0",
"showdown-toc": "^1.0.1"
}
}