node-tailor
Version:
Tailor assembles a web page from multiple fragments
59 lines (58 loc) • 1.39 kB
JSON
{
"name": "node-tailor",
"version": "0.2.4",
"description": "Tailor assembles a web page from multiple fragments",
"keywords": [
"tailor",
"layout service",
"node-tailor"
],
"scripts": {
"test": "mocha --harmony tests/**",
"test-frontend": "mocha --harmony example/test.js",
"coverage": "node --harmony node_modules/.bin/istanbul cover _mocha -- tests/**",
"lint": "eslint lib/ tests/ src/pipe.js",
"example": "npm run prepublish && node --harmony example/tailor",
"benchmark": "node perf/benchmark",
"prepublish": "uglifyjs src/pipe.js --mangle --compress --comments -o src/pipe.min.js"
},
"pre-commit": [
"lint",
"prepublish",
"test"
],
"engines": {
"node": ">5.0.0"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:zalando/tailor.git"
},
"author": "Andrey Kuzmin",
"license": "MIT",
"dependencies": {
"parse-link-header": "^0.2.0",
"sax": "^1.1.4"
},
"devDependencies": {
"eslint": "^2.0.0",
"istanbul": "^0.4.1",
"lazypipe": "^1.0.1",
"loadtest": "^1.3.0",
"metrics": "^0.1.9",
"mocha": "^2.2.5",
"nock": "^2.6.0",
"pre-commit": "^1.1.2",
"sinon": "^1.15.3",
"uglify-js": "^2.6.1",
"wd": "^0.4.0"
},
"files": [
"lib",
"LICENSE",
"MAINTAINERS",
"index.js",
"README.md",
"src/pipe.min.js"
]
}