forked from zalando/tailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
{
"name": "node-tailor",
"version": "1.1.0",
"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",
"coverage": "node --harmony node_modules/.bin/istanbul cover _mocha -- tests/**",
"lint": "eslint .",
"fix": "eslint . --fix",
"benchmark": "node perf/benchmark",
"prepublish": "uglifyjs src/pipe.js --mangle --compress --comments -o src/pipe.min.js"
},
"pre-commit": [
"lint",
"prepublish",
"test"
],
"engines": {
"node": ">4.4.x"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:zalando/tailor.git"
},
"author": "Andrey Kuzmin",
"license": "MIT",
"dependencies": {
"parse-link-header": "^0.2.0",
"parse5": "^2.1.5"
},
"devDependencies": {
"eslint": "^2.0.0",
"iamdee": "^0.4.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",
"proxyquire": "^1.7.10",
"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"
]
}