forked from tonyheupel/liquid-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "liquid",
"description": "Node.js port of the Liquid template engine",
"version": "0.0.0-development",
"license": "MIT",
"homepage": "https://github.com/docs/liquid",
"keywords": [
"liquid",
"jekyll",
"template",
"templating",
"jinja"
],
"main": "./lib/index.js",
"engines": {
"node": ">=8"
},
"dependencies": {
"strftime": "~0.9.2"
},
"devDependencies": {
"chai": "~3.5.0",
"chai-as-promised": "~5.3.0",
"coveralls": "^2.11.4",
"jscoverage": "^0.6.0",
"mocha": "~2.5.3",
"mocha-lcov-reporter": "1.2.0",
"semantic-release": "^17.0.4",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"standard": "^12.0.1",
"standard-markdown": "^5.0.1"
},
"scripts": {
"test": "mocha -R spec test",
"precommit": "npm test && npm run lint",
"coverage": "LIQUID_NODE_COVERAGE=1 mocha -r jscoverage --reporter mocha-lcov-reporter test | coveralls",
"coverage-report": "LIQUID_NODE_COVERAGE=1 mocha -r jscoverage --covout html test",
"lint": "standard --fix && standard-markdown"
},
"standard": {
"globals": [
"expect",
"renderTest",
"requireLiquid"
],
"env": [
"mocha"
]
}
}