{ "name": "liquidjs", "version": "2.1.1", "description": "A Liquid template engine for Node.js and browsers, with all shopify/liquid features.", "main": "index.js", "scripts": { "lint": "eslint src/ test/", "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" }, "devDependencies": { "babel-preset-es2015": "^6.24.1", "babelify": "^7.3.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" } }