-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "ilc-plugins-sdk",
"version": "0.0.0",
"description": "This package provides interfaces & base classes for ILC plugins developers",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"files": [
"dist/**",
"browser.js",
"browser.d.ts",
"webpack.js",
"webpack.d.ts"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "cross-env NODE_ENV=test mocha",
"test:ci": "npm run test -- --forbid-only",
"test:coverage": "cross-env NODE_ENV=test nyc mocha",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namecheap/ilc-plugins-sdk.git"
},
"author": "Namecheap, Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/namecheap/ilc-plugins-sdk/issues"
},
"homepage": "https://github.com/namecheap/ilc-plugins-sdk#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/chai": "^4.3.8",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.6",
"@types/sinon": "^10.0.19",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"husky": "^9.1.6",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"semantic-release": "^24.1.3",
"sinon": "^16.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0"
},
"dependencies": {
"fast-glob": "^3.3.1",
"http-headers": "^3.0.2",
"hyperid": "^3.1.1",
"pino": "^8.16.0"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}