UNPKG

1.67 kBJSONView Raw
1{
2 "name": "node-tailor",
3 "version": "3.3.0",
4 "description": "Tailor assembles a web page from multiple fragments",
5 "keywords": [
6 "tailor",
7 "layout service",
8 "streaming templates",
9 "node-tailor"
10 ],
11 "scripts": {
12 "test": "mocha --harmony tests/**",
13 "test-frontend": "mocha --harmony examples/multiple-fragments-with-custom-amd/test.js",
14 "coverage": "node --harmony node_modules/.bin/istanbul cover _mocha -- tests/**",
15 "codecov": "cat coverage/lcov.info | codecov",
16 "lint": "eslint .",
17 "fix": "eslint . --fix",
18 "benchmark": "node perf/benchmark",
19 "prepublish": "uglifyjs src/pipe.js --mangle --compress=negate_iife=false,expression=true --comments -o src/pipe.min.js"
20 },
21 "pre-commit": [
22 "lint",
23 "prepublish",
24 "test"
25 ],
26 "engines": {
27 "node": ">6.0.0"
28 },
29 "repository": {
30 "type": "git",
31 "url": "ssh://git@github.com:zalando/tailor.git"
32 },
33 "author": "Andrey Kuzmin",
34 "license": "MIT",
35 "dependencies": {
36 "http-link-header": "^0.8.0",
37 "parse5": "^3.0.2",
38 "util.promisify": "^1.0.0"
39 },
40 "devDependencies": {
41 "codecov": "^2.2.0",
42 "eslint": "^4.0.0",
43 "eslint-plugin-prettier": "^2.2.0",
44 "iamdee": "^0.4.0",
45 "istanbul": "^0.4.1",
46 "lazypipe": "^1.0.1",
47 "loadtest": "^2.3.0",
48 "metrics": "^0.1.11",
49 "mocha": "^3.4.2",
50 "nock": "^9.0.13",
51 "pre-commit": "^1.2.2",
52 "prettier": "^1.6.1",
53 "proxyquire": "^1.8.0",
54 "sinon": "^2.3.4",
55 "uglify-js": "^3.0.18",
56 "wd": "^1.2.0"
57 },
58 "files": [
59 "lib",
60 "LICENSE",
61 "MAINTAINERS",
62 "index.js",
63 "README.md",
64 "src/pipe.min.js",
65 "yarn.lock"
66 ]
67}