-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.93 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.93 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
67
68
69
70
71
72
73
74
{
"name": "@clair-design/clair-utils",
"version": "1.0.1",
"description": "common utils for clair-design",
"main": "dist/clair-utils.js",
"module": "dist/clair-utils.mjs",
"source": "src/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"commit": "npx git-cz",
"build": "rm -rf dist && rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js -w",
"format": "pretty-quick --pattern \"**/*.*(ts|tsx)\"",
"test": "jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/clair-design/clair-utils.git"
},
"author": "wemlion <angusfu1126@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/clair-design/clair-utils/issues"
},
"homepage": "https://github.com/clair-design/clair-utils#readme",
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/jest": "^24.0.9",
"babel-jest": "^24.1.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"rollup": "^1.4.1",
"rollup-plugin-typescript2": "^0.19.3",
"semantic-release": "^15.13.3",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}