This repository has been archived by the owner on Apr 7, 2021. It is now read-only.
forked from harttle/liquidjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.9 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
{
"name": "@stampr/liquidjs",
"version": "3.1.15",
"description": "Liquid template engine by pure JavaScript: compatible to shopify, easy to extend.",
"main": "./dist/liquidjs.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha -r ./test-helpers test --recursive",
"coverage": "cross-env NODE_ENV=test istanbul cover --report html ./node_modules/mocha/bin/_mocha -- -R spec --recursive",
"lcov": "cross-env NODE_ENV=test istanbul cover --report lcovonly ./node_modules/mocha/bin/_mocha -- -R spec --recursive"
},
"repository": {
"type": "git",
"url": "git://github.com/stampr/liquidjs.git"
},
"engines": {
"node": ">=6.10.0"
},
"keywords": [
"liquid",
"template engine",
"express",
"jinja",
"shopify"
],
"author": "Harttle",
"license": "MIT",
"bugs": {
"url": "https://github.com/stampr/liquidjs/issues"
},
"homepage": "https://github.com/stampr/liquidjs#readme",
"dependencies": {
"lodash.uniq": "^4.5.0",
"resolve-url": "^0.2.1"
},
"browser": {
"fs": false
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.1",
"istanbul": "^0.4.5",
"jsdom": "^11.5.1",
"mocha": "^4.0.0",
"mock-fs": "^4.4.1",
"reify": "^0.14.2",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0",
"supertest": "^3.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"files": [
"dist/"
]
}