forked from distillpub/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "distill-template",
"version": "2.8.0",
"description": "Template for creating Distill articles.",
"main": "dist/template.v2.js",
"bin": {
"distill-render": "./bin/render.js"
},
"author": "Shan Carter",
"homepage": "https://github.com/distillpub/distill-template#readme",
"bugs": {
"url": "https://github.com/distillpub/distill-template/issues"
},
"scripts": {
"dev": "rollup -c rollup.config.dev.js -w",
"serve": "http-server",
"test": "mocha",
"lint": "eslint",
"build": "rollup -c rollup.config.prod.js",
"prepare": "npm run build"
},
"repository": {
"url": "git+https://github.com/distillpub/distill-template.git",
"type": "git"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@rollup/plugin-babel": "^5.0.0",
"bibtex-parse-js": "^0.0.23",
"chai": "^3.5.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"js-yaml": "^3.13.1",
"jsdom": "11.3.0",
"jsdom-global": "3.0.2",
"marked": "^0.8.2",
"mocha": "^5.2.0",
"prismjs": "^1.20.0",
"rollup": "^2.7.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-grapher": "^0.2.0",
"rollup-plugin-gzip": "^1.4.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^4.3.1",
"should": "^13.2.3",
"source-map-support": "^0.5.19"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^1.3.3",
"assert": "^1.5.0",
"commander": "^2.20.3",
"d3-array": "^2.4.0",
"d3-drag": "^1.2.5",
"d3-scale": "^3.2.1",
"d3-selection": "^1.4.1",
"d3-time-format": "^2.2.3",
"escape-html": "^1.0.3",
"intersection-observer": "^0.4.3",
"jsdom-wc": "^11.0.0-alpha-1",
"katex": "^0.8.3"
}
}