-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
80
81
82
83
84
85
{
"name": "tandem",
"version": "2.0.0",
"private": true,
"dependencies": {
"bower": "^1.8.8",
"browserify": "^11.0.1",
"browserify-shim": "^3.8.8",
"jquery": "^3.4.1",
"metalsmith": "~1.7.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-browserify": "RobLoach/metalsmith-browserify#update",
"metalsmith-clean-css": "^5.0.1",
"metalsmith-collections": "^0.9.0",
"metalsmith-collections-convention": "^1.0.0",
"metalsmith-env": "^2.0.0",
"metalsmith-feed-js": "https://github.com/thinktandem/metalsmith-feed-js",
"metalsmith-in-place": "^1.4.4",
"metalsmith-include": "https://github.com/thiagodemellobueno/metalsmith-include.git#includeWholeObject",
"metalsmith-inline-css": "^1.0.2",
"metalsmith-jsonld": "~0.0",
"metalsmith-layouts": "^1.6.5",
"metalsmith-markdown": "~0.2.1",
"metalsmith-metadata-convention": "0.1.0",
"metalsmith-move-up": "^1.0.0",
"metalsmith-pagination": "^1.4.0",
"metalsmith-permalinks": "~0.4.0",
"metalsmith-prism": "^3.0.0",
"metalsmith-redirect": "^2.1.0",
"metalsmith-robots": "^1.0.1",
"metalsmith-rss": "https://github.com/thinktandem/metalsmith-rss",
"metalsmith-sass": "^1.4.0",
"metalsmith-seo-checker": "https://github.com/thinktandem/metalsmith-seo-checker",
"metalsmith-sitemap": "^1.1.0",
"metalsmith-swig-helpers": "https://github.com/thinktandem/metalsmith-swig-helpers",
"metalsmith-tags": "https://github.com/thinktandem/metalsmith-tags",
"metalsmith-youtube": "^1.0.2",
"prismjs": "1.13.0",
"swig": "^1.4.2",
"swig-extras": "https://github.com/reynoldsalec/swig-extras.git",
"xor-crypt": "~1.0.0"
},
"scripts": {
"build": "/app/node_modules/.bin/metalsmith build",
"test": "/app/node_modules/.bin/grunt test",
"watch": "/app/node_modules/.bin/grunt watch",
"start": "/app/node_modules/.bin/grunt"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-exec": "^0.4.6",
"grunt-htmllint": "^0.3.0",
"grunt-sass-lint": "^0.2.0",
"matchdep": "^1.0.1",
"shell-escape": "^0.2.0"
},
"browser": {
"bootstrap": "./assets/public/bootstrap-sass-twbs/assets/javascripts/bootstrap.min.js",
"matchheight": "./assets/public/matchheight/dist/jquery.matchHeight-min.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"bootstrap": {
"depends": [
"jquery:jQuery"
]
},
"matchheight": {
"depends": [
"jquery:jQuery"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/thinktandem/tandem"
}
}