forked from camunda/blog.camunda.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"private": true,
"name": "blog.camunda.org",
"version": "0.0.1",
"description": "Camunda blog",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "grunt build && grunt optimize && hugo",
"dev": "grunt build && grunt optimize && hugo server -w -D",
"update-theme": "git checkout -- themes/ && grunt build optimize && git add themes/ && git commit -m \"chore(theme): update theme build\""
},
"repository": {
"type": "git",
"url": "https://github.com/camunda/blog.camunda.org.git"
},
"keywords": [
"camunda",
"blog"
],
"author": "Valentin Vago <zeropaper@irata.ch>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/camunda/blog.camunda.org/issues"
},
"homepage": "https://github.com/camunda/blog.camunda.org",
"setup": {
"source": "./theme-src",
"target": "./themes/blogcamundaorg"
},
"devDependencies": {
"camunda-commons-ui": "camunda/camunda-commons-ui#master",
"grunt": "0.4.5",
"grunt-browserify": "4.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-copy": "0.8.0",
"grunt-contrib-cssmin": "0.13.0",
"grunt-contrib-less": "1.0.1",
"grunt-contrib-uglify": "0.9.1",
"grunt-contrib-watch": "0.6.1",
"load-grunt-tasks": "3.2.0",
"lodash.template": "3.6.2",
"prismjs": "1.2.0",
"xhr": "2.2.0"
}
}