-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (52 loc) · 1.54 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
54
55
56
57
58
{
"name": "explode-the-web",
"version": "1.0.0",
"description": "Originally published as a chapter the tutorial has now been updated and improved:",
"main": "Gruntfile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sneakaway-studio/explode-the-web.git"
},
"author": "Owen Mundy",
"title": "Explode the Web!",
"license": "Attribution-NonCommercial 4.0 International",
"bugs": {
"url": "https://github.com/sneakaway-studio/explode-the-web/issues"
},
"homepage": "https://github.com/sneakaway-studio/explode-the-web#readme",
"marp": {
"author": "Owen Mundy",
"title": "Explode the Web!",
"keywords": "computing, proficiency, browser extensions",
"allowLocalFiles": true,
"html": true,
"bespoke": {
"progress": true
},
"theme": "owen",
"themeSet": [
"tutorial/assets/css/slide-styles.css"
],
"options": {
"script": {
"source": [
"tutorial/assets/js/"
]
}
},
"inputDir": "tutorial/markdown",
"output": "tutorial/slides",
"watch": false,
"minifyCSS": false
},
"devDependencies": {
"grunt": "^1.5.3",
"grunt-contrib-jshint": "^3.1.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-md2html": "^0.6.0",
"grunt-shell": "^3.0.1"
}
}