-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 KB
/
package.json
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
{
"name": "js-mark",
"version": "1.0.6",
"description": "js节点高亮插件,文本标注",
"license": "ISC",
"author": "BigCoal <1048506792@qq.com>",
"main": "dist/js-mark.js",
"homepage": "https://github.com/know-vampire/js-annotation.git",
"scripts": {
"dev": "rollup --config -w",
"build": "rollup --config"
},
"repository": {
"type": "git",
"url": "https://github.com/know-vampire/js-annotation.git"
},
"keywords": [
"annotation",
"js-annotation",
"highlight",
"js-highlight",
"javascript",
"typescript",
"es6"
],
"bugs": {
"url": "https://github.com/know-vampire/js-annotation.git",
"email": "1048506792@qq.com"
},
"contributors": [
{
"name": "朱保康",
"email": "1048506792@qq.com"
}
],
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.6",
"npm-run-all": "^4.1.5",
"rollup": "^2.34.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/js-beautify": "^1.13.3",
"js-beautify": "^1.14.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tslib": "^2.3.1"
}
}