-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "require-module-from-string",
"description": "require module from string",
"author": "dry",
"license": "MIT",
"version": "1.0.19",
"repository": {
"type": "git",
"url": "https://github.com/dixdiydiz/require-module-from-string.git"
},
"keywords": [
"require",
"string",
"module"
],
"scripts": {
"dev": "tsc -w -incremental",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push --follow-tags"
},
"main": "dist/index.js",
"types": "types/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.21",
"chalk": "^4.1.0",
"conventional-changelog-cli": "^2.1.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": ">=10",
"prettier": "2.2.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=12.0.0"
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
}
}