forked from ustbhuangyi/better-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·97 lines (97 loc) · 2.6 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
{
"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",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest --coverage --runInBand",
"test:e2e": "jest --config=jest-e2e.config.js --runInBand",
"cm": "git-cz"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"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": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@types/jest": "^23.3.2",
"@types/node": "^10.12.18",
"@types/puppeteer": "^1.12.4",
"codecov": "^3.5.0",
"commitizen": "^3.0.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"execa": "^1.0.0",
"husky": "^1.0.1",
"inquirer": "^6.3.1",
"jest": "23.6.0",
"jest-config": "^23.6.0",
"jest-puppeteer": "3.9.0",
"lerna": "^3.14.1",
"lint-staged": "^8.0.0",
"ora": "^3.4.0",
"prettier": "^1.14.3",
"puppeteer": "^1.17.0",
"rimraf": "^2.6.2",
"rollup": "^1.10.1",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "0.21.0",
"rollup-plugin-uglify": "^6.0.1",
"semver": "^6.1.0",
"ts-jest": "^23.10.2",
"ts-loader": "^5.3.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.0.3",
"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"
}