UNPKG

1.54 kBJSONView Raw
1{
2 "name": "node-tailor",
3 "version": "2.0.2",
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 --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 "parse-link-header": "^0.4.1",
37 "parse5": "^3.0.1"
38 },
39 "devDependencies": {
40 "codecov": "^1.0.1",
41 "eslint": "^3.13.1",
42 "iamdee": "^0.4.0",
43 "istanbul": "^0.4.1",
44 "lazypipe": "^1.0.1",
45 "loadtest": "^2.2.1",
46 "metrics": "^0.1.11",
47 "mocha": "^3.2.0",
48 "nock": "^9.0.2",
49 "pre-commit": "^1.2.2",
50 "proxyquire": "^1.7.10",
51 "sinon": "^1.17.7",
52 "uglify-js": "^2.7.5",
53 "wd": "^1.1.1"
54 },
55 "files": [
56 "lib",
57 "LICENSE",
58 "MAINTAINERS",
59 "index.js",
60 "README.md",
61 "src/pipe.min.js"
62 ]
63}