-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.55 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
{
"name": "yonui-extension",
"version": "0.7.32",
"description": "MDF components extension base class",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"postversion": "git push --follow-tags",
"build": "rm -rf lib && tsc",
"test": "echo no test",
"lint": "eslint . --ext .ts,.tsx,.js,jsx",
"lint:quiet": "npm run lint -- --quiet",
"lint:fix": "npm run lint -- --quiet --fix",
"lint:git": "git diff --cached --name-only --diff-filter=ACM | grep '\\.[jt]sx\\?$' | xargs eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:git",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git@git.yonyou.com:mdf-5.0/extension.git"
},
"files": [
"README.md",
"package.json",
"lib",
"src"
],
"author": "Yudu Ban <banyd@yonyou.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/react": "^16.9.13",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.7.0",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.1.0",
"tsc": "^1.20150623.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"react": "^16.12.0"
}
}