This repository was archived by the owner on Jul 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.34 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.34 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "--libraryname--",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "dist/--libraryname--.js",
"module": "dist/--libraryname--.es.js",
"unpkg": "dist/--libraryname--.umd.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"author": "--username--",
"maintainers": [
"--username--"
],
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "concurrently \"node scripts/start.js\" \"tsc -w\"",
"build": "node scripts/build.js",
"test": "jest --watchAll",
"demo": "cd demo && nr start",
"prepublishOnly": "nr build && nr changelog",
"lint": "eslint \"src/**/*.{js?(x),ts?(x)}\"",
"lint:fix": "nr lint --fix",
"commit": "git-cz",
"changelog": "standard-version -n",
"postinstall": "esno tools/init"
},
"gitHooks": {
"pre-commit": "lint-staged --allow-empty",
"commit-msg": "commitlint -E GIT_PARAMS"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.{js,jsx,json,css,scss,less,html,md}": [
"prettier --write"
],
"src/**/*.{ts,tsx}": [
"prettier --parser=typescript --write"
],
"src/**/*.{ts,tsx,js,jsx}": [
"nr lint:fix --max-warnings 0"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"@babel/runtime-corejs3": "^7.18.3"
},
"peerDependencies": {},
"devDependencies": {
"@antfu/ni": "^0.16.2",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-url": "^6.0.0",
"@types/jest": "^26.0.13",
"@types/node": "^14.10.2",
"@umijs/fabric": "^2.5.7",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-macros": "^3.1.0",
"camelcase": "^6.2.0",
"colors": "^1.4.0",
"commitizen": "^4.2.1",
"concurrently": "^5.3.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cross-spawn": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.21.0",
"esno": "^0.14.1",
"inquirer": "^8.0.0",
"jest": "^26.4.2",
"jest-config": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.2.1",
"replace-in-file": "^6.1.0",
"rollup": "^2.34.2",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^6.1.0",
"shelljs": "^0.8.4",
"standard-version": "^9.3.1",
"ts-jest": "^26.3.0",
"typescript": "^4.2.3",
"yorkie": "^2.0.0"
},
"resolutions": {}
}