-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
106 lines (106 loc) · 2.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "minivaline",
"version": "1.2.38",
"description": "A simple and minimalist comment system based on Leancloud.",
"main": "/dist/MiniValine.min.js",
"author": {
"name": "MHuiG",
"url": "https://github.com/MHuiG",
"email": "[email protected]"
},
"scripts": {
"test": "webpack",
"build": "cross-env env_config=build webpack",
"dev": "cross-env env_config=web node_modules/.bin/webpack-dev-server --colors --hot --inline",
"clear": "rm -rf dist/* ",
"check": "eslint src",
"format": "eslint src --fix",
"cover": "jest --coverage --runInBand --detectOpenHandles"
},
"keywords": [
"MiniValine",
"Simple Comment",
"Comment System",
"Based on Leancloud",
"Minimalist"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/MiniValine/MiniValine.git"
},
"bugs": {
"url": "https://github.com/MiniValine/MiniValine/issues"
},
"homepage": "https://github.com/MiniValine/MiniValine#readme",
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@bundle-analyzer/webpack-plugin": "0.5.1",
"autoprefixer": "9.7.6",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "3.0.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"exports-loader": "0.7.0",
"jest": "25.2.7",
"node-sass": "4.13.1",
"postcss-loader": "3.0.0",
"sass-loader": "8.0.2",
"style-loader": "1.1.3",
"url-loader": "4.0.0",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
},
"dependencies": {
"autosize": "^4.0.2",
"babel-jest": "^25.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"blueimp-md5": "^2.13.0",
"css-loader": "^3.4.2",
"fibers": "^4.0.2",
"highlight.js": "^9.18.1",
"jquery": "^3.4.1",
"lazysizes": "^5.2.0",
"leancloud-storage": "^4.5.3",
"marked": "^0.8.0",
"sass": "^1.26.3",
"source-map": "^0.7.0",
"string-format": "^2.0.0",
"xss": "^1.0.3"
},
"jest": {
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
},
"moduleNameMapper": {
"\\.(css|less|scss|styl)$": "<rootDir>/test/__mocks__/style.js",
"^!!raw-loader": "<rootDir>/test/__mocks__/text.js"
},
"moduleFileExtensions": [
"js"
],
"coveragePathIgnorePatterns": [
"src/MiniValine.js",
"src/html/*",
"src/utils/domUtils.js",
"src/utils/MathJax.js",
"src/utils/md.js",
"src/utils/setAV.js",
"src/utils/initAV.js",
"src/utils/timeago.js",
"src/utils/initConfig.js"
],
"globals": {
"VERSION": "1.0.0-test"
}
}
}