mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
64 lines
1.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
"name": "liquidjs",
|
|
"version": "3.0.0",
|
|
"description": "Liquid template engine by pure JavaScript: compatible to shopify, easy to extend.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"test": "mocha --recursive",
|
|
"coverage": "NODE_ENV=test istanbul cover --report html ./node_modules/mocha/bin/_mocha -- -R spec --recursive",
|
|
"lcov": "NODE_ENV=test istanbul cover --report lcovonly ./node_modules/mocha/bin/_mocha -- -R spec --recursive",
|
|
"dist": "make dist",
|
|
"preversion": "npm run lint && npm test",
|
|
"version": "npm run dist && git add -A dist",
|
|
"postversion": "git push && git push --tags"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/harttle/liquidjs.git"
|
|
},
|
|
"keywords": [
|
|
"liquid",
|
|
"template engine",
|
|
"express",
|
|
"jinja",
|
|
"shopify"
|
|
],
|
|
"author": "Harttle",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/harttle/liquidjs/issues"
|
|
},
|
|
"homepage": "https://github.com/harttle/liquidjs#readme",
|
|
"dependencies": {
|
|
"any-promise": "^1.3.0"
|
|
},
|
|
"browser": {
|
|
"fs": false
|
|
},
|
|
"devDependencies": {
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-core": "^6.26.0",
|
|
"babelify": "^8.0.0",
|
|
"browserify": "^14.4.0",
|
|
"chai": "^4.1.2",
|
|
"chai-as-promised": "^7.1.1",
|
|
"coveralls": "^3.0.0",
|
|
"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",
|
|
"mocha": "^4.0.0",
|
|
"mock-fs": "^4.4.1",
|
|
"sinon": "^4.0.1",
|
|
"sinon-chai": "^2.14.0",
|
|
"supertest": "^3.0.0",
|
|
"uglify-js": "^3.1.3"
|
|
}
|
|
}
|