-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.74 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ilc-sdk",
"version": "0.0.0",
"description": "SDK for app development with Isomorphic Layout Composer",
"main": "dist/server/index.js",
"types": "dist/server/index.d.ts",
"files": [
"dist/**",
"app.js",
"app.d.ts"
],
"scripts": {
"build": "tsc -p ./src/app && tsc -p ./src/server",
"test": "mocha -r ts-node/register test/**/*.ts",
"coverage": "nyc npm run test",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "tslint -p ./src/app && tslint -p ./src/server",
"docs": "typedoc",
"preversion": "npm run format:check && npm run lint && npm test",
"prepublish": "npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namecheap/ilc-sdk.git"
},
"author": "Namecheap, Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/namecheap/ilc-sdk/issues"
},
"homepage": "https://github.com/namecheap/ilc-sdk#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@knodes/typedoc-plugin-pages": "^0.23.4",
"@types/chai": "^4.3.9",
"@types/chai-as-promised": "^7.1.7",
"@types/jsdom": "^21.1.4",
"@types/lodash.merge": "^4.6.8",
"@types/memoizee": "^0.4.10",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.7",
"@types/sinon": "^10.0.20",
"@types/uglify-js": "^3.17.3",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"husky": "^9.1.6",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^15.2.10",
"mocha": "^10.2.0",
"mock-http": "^1.1.0",
"nock": "^13.3.6",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"semantic-release": "^24.1.2",
"sinon": "^17.0.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typedoc": "~0.23.28",
"typedoc-plugin-missing-exports": "^1.0.0",
"typedoc-plugin-rename-defaults": "0.6.6",
"typescript": "~5.0.4"
},
"dependencies": {
"@types/url-join": "^4.0.2",
"avsc": "^5.7.7",
"axios": "^1.5.1",
"lodash.merge": "^4.6.2",
"memoizee": "^0.4.15",
"uglify-js": "^3.17.4",
"url-join": "^4.0.1",
"webpack-inject-plugin": "^1.5.5",
"wrapper-webpack-plugin": "^2.2.2"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
},
"engines": {
"npm": ">=7"
}
}