forked from StyleT/tailorx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.99 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": "@namecheap/tailorx",
"version": "0.0.0",
"description": "Tailor assembles a web page from multiple fragments",
"keywords": [
"tailor",
"layout service",
"streaming templates",
"node-tailor"
],
"scripts": {
"test": "mocha --harmony tests/**",
"coverage": "nyc --reporter=lcov --reporter=text mocha --harmony tests/**",
"codecov": "cat coverage/lcov.info | codecov",
"lint": "eslint .",
"fix": "eslint . --fix",
"benchmark": "node perf/benchmark",
"prepare": "husky"
},
"engines": {
"node": ">12.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:namecheap/tailorx.git"
},
"license": "Apache-2.0",
"dependencies": {
"@namecheap/error-extender": "^2.0.0",
"agentkeepalive": "^4.5.0",
"device-detector-js": "^3.0.3",
"lodash": "^4.17.21",
"memoizee": "^0.4.15",
"opentracing": "^0.14.7",
"parse5": "^6.0.1",
"parse5-htmlparser2-tree-adapter": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"codecov": "^3.8.3",
"eslint": "^9.13.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"loadtest": "^8.0.9",
"metrics": "^0.1.21",
"mocha": "^10.7.3",
"nock": "^13.5.5",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"proxyquire": "^2.1.3",
"puppeteer": "^23.6.0",
"semantic-release": "^24.1.2",
"sinon": "^19.0.2"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
},
"files": [
"lib",
"LICENSE",
"index.js",
"index.d.ts",
"README.md"
],
"types": "index.d.ts"
}