-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.23 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.23 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": "liquid-filters",
"description": "Liquid filters written in vanilla JavaScript, allowing them to be used with any template engine.",
"version": "0.1.0",
"homepage": "https://github.com/jonschlinkert/liquid-filters",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/liquid-filters",
"bugs": {
"url": "https://github.com/jonschlinkert/liquid-filters/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"colorutilities": "0.0.2",
"ent": "^2.2.0",
"export-files": "^2.1.1",
"fill-range": "^5.0.0",
"get-value": "^3.0.1",
"inflection": "^1.12.0",
"is-number": "^5.0.0",
"isobject": "^3.0.1",
"kind-of": "^6.0.2",
"moment": "^2.21.0"
},
"devDependencies": {
"mocha": "^3.5.3",
"moment-strftime": "^0.3.0",
"gulp-format-md": "^1.0.0"
},
"keywords": [
"filters",
"helpers",
"liquid"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
}
}
}