-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.86 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": "@paciolan/remote-module-loader",
"version": "1.0.0-symantec-versioning",
"description": "",
"main": "dist/index.js",
"browser": {
"./dist/lib/nodeFetcher.js": false
},
"author": "Paciolan",
"license": "MIT",
"repository": {
"type": "ssh",
"url": "git@gitlabdev.paciolan.info:development/library/javascript/remote-module-loader.git"
},
"release": {
"branch": "master",
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"publishCmd": "./scripts/publish.sh ${nextRelease.version}"
}
]
]
},
"scripts": {
"prebuild": "npm run clean",
"build": "tsc --declaration",
"watch": "npm run build -- --watch",
"clean": "rimraf dist",
"cz": "git-cz",
"test": "tsx --experimental-test-module-mocks --test 'src/**/*.test.ts'",
"test:changed": "tsx --experimental-test-module-mocks --test 'src/**/*.test.ts'",
"test:coverage": "tsx --experimental-test-module-mocks --experimental-test-coverage --test 'src/**/*.test.ts'",
"lint": "eslint . --fix",
"prepare": "husky"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-typescript": "^7.28.5",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^25.5.2",
"babel-loader": "^10.1.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"git-cz": "^4.9.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"regenerator-runtime": "^0.14.1",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}