forked from ustbhuangyi/better-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·105 lines (105 loc) · 3.04 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"packages:build": "node scripts/build.js",
"packages:release": "node scripts/release.js",
"docs:dev": "lerna run --stream --scope vuepress-docs docs:dev",
"docs:build": "lerna run --stream --scope vuepress-docs docs:build",
"docs:release": "lerna run --stream --scope vuepress-docs docs:release",
"vue:dev": "lerna run --stream --scope examples vue:dev",
"vue:build": "lerna run --stream --scope examples vue:build",
"vue:release": "lerna run --stream --scope examples vue:release",
"react:dev": "lerna run --stream --scope react-examples dev",
"react:build": "lerna run --stream --scope react-examples build",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest --coverage && yarn test:tsd",
"test:e2e": "jest --config=jest-e2e.config.js --runInBand",
"test:tsd": "tsc -p ./test-dts/tsconfig.json",
"vue:test:e2e": "lerna run --stream --scope examples vue:test:e2e",
"cm": "git-cz",
"preinstall": "node ./scripts/checkYarn.js",
"postinstall": "yarn bootstrap"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"homepage": "https://github.com/ustbhuangyi/better-scroll",
"keywords": [
"scroll",
"iscroll",
"javascript",
"typescript",
"ios"
],
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/puppeteer": "^3.0.1",
"@vuepress/plugin-back-to-top": "^1.8.0",
"@vuepress/plugin-medium-zoom": "^1.5.4",
"codecov": "^3.5.0",
"commitizen": "^4.1.5",
"coveralls": "^3.0.2",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"execa": "^4.0.3",
"husky": "^4.2.5",
"inquirer": "^7.3.3",
"jest": "^26.0.1",
"jest-config": "^26.4.2",
"jest-puppeteer": "4.4.0",
"lerna": "^3.14.1",
"lint-staged": "^10.2.11",
"ora": "^5.0.0",
"prettier": "^2.0.5",
"puppeteer": "^5.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify": "^6.0.1",
"semver": "^7.3.2",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^9.0.0",
"typescript": "4.0.2",
"vconsole": "^3.3.4",
"zlib": "^1.0.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8",
"Android >= 4.0",
"iOS >= 8"
],
"name": "better-scroll"
}