forked from panglesd/slipshow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"name": "slipshow",
"version": "0.0.32",
"description": "This is not another slide engine, but a slip engine.",
"main": "./dist/slipshow.js",
"browser": "./dist/slipshow.cdn.min.js",
"files": [
"/dist",
"/bin",
"!*~",
"!*.tar.gz"
],
"repository": "[email protected]:panglesd/slipshow.git",
"author": "panglesd",
"license": "MIT",
"keywords": [
"slideshow",
"slides",
"slide",
"presentation",
"slip",
"slipshow",
"slips",
"prezi",
"reveal.js",
"impress.js"
],
"scripts": {
"dev": "parcel src/slip-lib.js",
"old-build": "parcel build src/slip-lib.js src/css/*.css",
"build": "node build/build.js",
"build-staged": "node build/build-staged.js",
"pack-in-tar": "node build/pack.js",
"build-and-pack": "yarn build; yarn pack-in-tar",
"watch": "rollup -w -c build/rollup.config.mjs"
},
"bin": {
"new-slipshow": "bin/generate.js",
"new-figure": "bin/generate-figure.js",
"compile-figure": "bin/compile-figure.js",
"slipshow": "bin/slipshow"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"parcel": "^2.10.3",
"mathjax": "^3.2.2",
"rollup": "^4.5.0"
},
"dependencies": {
"app-root-path": "^3.0.0",
"atrament": "^3.0.0",
"hammerjs": "^2.0.8",
"readline-sync": "^1.4.10",
"shelljs": "^0.8.4"
}
}