-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.59 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
{
"name": "log-diff",
"version": "1.0.6",
"description": "log compare",
"repository": "https://github.com/fridaydream/log-diff",
"scripts": {
"build": "father build && webpack",
"lint": "npm run lint-eslint && npm run lint:style && tsc --noEmit",
"lint-eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./**/src ./tests && npm run lint:style",
"lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
"prepublishOnly": "npm run test && npm run build && np --no-cleanup --yolo --no-publish",
"prettier": "prettier -c --write \"**/*\"",
"site": "dumi build",
"docs:build": "dumi build && gh-pages -d ./dist",
"deploy": "gh-pages -d ./dist",
"start": "npx dumi dev",
"test": "npm run lint && father test",
"jest:test": "father test"
},
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"/es",
"/dist"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"keywords": [
"log",
"diff"
],
"authors": {
"name": "cp",
"email": "daxierhao@gmail.com"
},
"license": "MIT",
"dependencies": {
"antd": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/classnames": "^2.2.9",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.tonumber": "^4.0.3",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@types/react-responsive": "^8.0.2",
"@umijs/babel-preset-umi": "^3.1.2",
"@umijs/fabric": "^2.0.0",
"babel-plugin-import": "^1.12.2",
"css-loader": "^3.5.3",
"dumi": "^1.0.25",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"father": "^2.29.3",
"husky": "^4.2.5",
"jsdom-global": "^3.0.2",
"less-loader": "^6.0.0",
"np": "^6.2.3",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react-github-btn": "^1.2.0",
"style-loader": "^1.2.1",
"stylelint": "^13.5.0",
"supports-color": "^7.1.0",
"typescript": "^3.3.3",
"umi": "^3.2.2",
"umi-plugin-githubpages": "^2.0.1",
"umi-request": "^1.2.15",
"v8-compile-cache": "^2.1.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"react": "16.x"
}
}