-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "@youtingkun/utils",
"version": "2.1.0",
"description": "utils",
"main": "./dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"check-type": "tsc --watch",
"build": "webpack --config webpack.config.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/youtingkun/utils.git"
},
"author": "youtingkun",
"license": "ISC",
"bugs": {
"url": "https://github.com/youtingkun/utils/issues"
},
"homepage": "https://github.com/youtingkun/utils#readme",
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-loader": "^8.2.2",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^8.19.0",
"husky": "^4.3.8",
"prettier": "^2.7.1",
"ts-loader": "^9.2.5",
"tslib": "^2.3.1",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
},
"dependencies": {
"lodash": "^4.17.21"
}
}