forked from gnab/remark
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 1.96 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
74
75
76
77
78
79
{
"name": "remark",
"version": "0.16.0",
"description": "Simple, in-browser, markdown-driven slideshow tool",
"keywords": [
"Markdown",
"slides",
"presentation",
"HTML",
"slideshow",
"MD",
"browser"
],
"dependencies": {
"marked": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tripu/remark.git"
},
"bugs": {
"url": "https://github.com/tripu/remark/issues"
},
"homepage": "https://github.com/tripu/remark/blob/develop/README.md",
"license": "MIT",
"devDependencies": {
"browserify": "^17.0.0",
"grunt": "^1.5.3",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"jshint": "^2.13.5",
"less": "^4.1.3",
"mocha": "^10.0.0",
"mocha-chrome": "^2.2.0",
"shelljs": "^0.8.5",
"should": "^8.4.0",
"should-sinon": "^0.0.6",
"sinon": "^14.0.0",
"uglify-js": "^3.16.3"
},
"scripts": {
"lint": "jshint --verbose --exclude src/remark/highlighter.js,src/remark/resources.js src/remark/*.js",
"bundle": "mkdir -p out && browserify -r ./src/remark/components/printing/printing.js:components/printing -r ./src/remark/components/slide-number/slide-number.js:components/slide-number -r ./src/remark/components/styler/styler.js:components/styler -r ./src/remark/components/timer/timer.js:components/timer src/remark.js > out/remark.js",
"test": "node make test",
"build": "npm run lint && npm run bundle && npm t"
},
"engines": {
"node": ">= 14",
"npm": ">= 7"
},
"contributors": [
{
"name": "Ole Petter Bang",
"url": "https://github.com/gnab"
},
{
"name": "tripu",
"url": "https://tripu.info/"
}
],
"jshintConfig": {
"eqeqeq": true,
"undef": true,
"laxcomma": true,
"browser": true,
"node": true,
"predef": [
"require",
"module",
"exports",
"location",
"describe",
"before",
"it",
"alert",
"$"
]
}
}