forked from zalando/tailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "node-tailor",
"version": "3.9.2",
"description": "Tailor assembles a web page from multiple fragments",
"keywords": [
"tailor",
"layout service",
"streaming templates",
"node-tailor"
],
"scripts": {
"test": "mocha --harmony tests/**",
"test:frontend": "mocha --harmony examples/multiple-fragments-with-custom-amd/test.js",
"test:frontend:hooks": "mocha --harmony examples/fragment-performance/test.js",
"coverage": "node --harmony node_modules/.bin/istanbul cover _mocha -- tests/**",
"codecov": "cat coverage/lcov.info | codecov",
"lint": "eslint .",
"fix": "eslint . --fix",
"benchmark": "node perf/benchmark",
"prepublish": "uglifyjs src/pipe.js --mangle --compress=negate_iife=false,expression=true --comments -o src/pipe.min.js"
},
"pre-commit": [
"lint",
"prepublish",
"test"
],
"engines": {
"node": ">8.0.0"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:zalando/tailor.git"
},
"author": "Andrey Kuzmin",
"license": "MIT",
"dependencies": {
"opentracing": "^0.14.3",
"parse5": "^3.0.3",
"util.promisify": "^1.0.0"
},
"devDependencies": {
"codecov": "^2.2.0",
"eslint": "^4.0.0",
"eslint-plugin-prettier": "^2.2.0",
"iamdee": "^0.4.0",
"istanbul": "^0.4.1",
"lazypipe": "^1.0.1",
"loadtest": "^2.3.0",
"metrics": "^0.1.11",
"mocha": "^3.4.2",
"nock": "^9.0.13",
"pre-commit": "^1.2.2",
"prettier": "^1.6.1",
"proxyquire": "^1.8.0",
"puppeteer": "^1.0.0",
"sinon": "^2.3.4",
"uglify-js": "^3.0.18",
"wd": "^1.2.0"
},
"files": [
"lib",
"LICENSE",
"MAINTAINERS",
"index.js",
"index.d.ts",
"README.md",
"src/pipe.min.js",
"yarn.lock"
],
"types": "index.d.ts"
}