-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.06 KB
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
{
"name": "@nexusmutual/utils",
"version": "0.0.1",
"description": "Shared utility libraries and functions for Nexus Mutual repositories",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "npm run lint -- --fix",
"ts:check": "npm run ts:check-types && npm run ts:circular-check",
"ts:check-types": "tsc --noEmit",
"ts:circular-check": "dpdm --no-output --no-tree --no-warning --exit-code circular:1 -T ./src/**/*.ts",
"test": "nyc --reporter=text mocha -r ts-node/register 'src/**/*.spec.ts'",
"publish:next": "npm publish --access public --tag next",
"prepare": "husky"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NexusMutual/utils.git"
},
"author": "nexusmutual.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/NexusMutual/utils/issues"
},
"homepage": "https://github.com/NexusMutual/utils#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"@types/node": "^22.10.3",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"chai": "^4.3.10",
"dpdm": "^3.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.11",
"mocha": "^10.3.0",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}