-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.28 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
{
"name": "bsas",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"packages:clean": "rimraf packages/**/types",
"packages:build": "npm run packages:clean && node scripts/build.js",
"packages:release": "node scripts/release.js",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest --coverage",
"test:e2e": "jest --config=jest-e2e.config.js --runInBand",
"cm": "git-cz"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"homepage": "https://github.com/essencemike/better-scroll-analysis",
"keywords": [
"scroll",
"iscroll",
"javascript",
"typescript",
"ios"
],
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@types/puppeteer": "^2.0.0",
"chalk": "^3.0.0",
"codecov": "^3.6.1",
"commitizen": "^4.0.3",
"conventional-changelog": "^3.1.15",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.0.2",
"execa": "^3.4.0",
"husky": "^3.1.0",
"inquirer": "^7.0.0",
"jest": "23.6.0",
"jest-config": "^23.6.0",
"jest-puppeteer": "3.9.0",
"lerna": "^3.16.4",
"lint-staged": "^9.5.0",
"ora": "^4.0.3",
"prettier": "^1.19.1",
"puppeteer": "^2.0.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.3",
"semver": "^6.3.0",
"shelljs": "^0.8.3",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"tslint": "^6.0.0-beta0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2",
"zlib": "^1.0.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8",
"Android >= 4.0",
"iOS >= 8"
]
}