-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.88 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
{
"name": "virtualized-list",
"version": "1.0.0",
"description": "A virtualized list written in vanilla JavaScript.",
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"author": {
"email": "xiaochao.k@gmail.com",
"name": "nonoroazoro",
"url": "https://github.com/nonoroazoro"
},
"license": "MIT",
"homepage": "https://github.com/nonoroazoro/virtualized-list",
"repository": {
"type": "git",
"url": "https://github.com/nonoroazoro/virtualized-list"
},
"bugs": {
"url": "https://github.com/nonoroazoro/virtualized-list/issues",
"email": "xiaochao.k@gmail.com"
},
"scripts": {
"prepare": "husky install",
"prebuild": "npm run clean && npm run cleanCov",
"clean": "rimraf dist/*",
"cleanCov": "rimraf @coverage",
"start": "npm run dev",
"dev": "node ./scripts/server/devServer",
"build": "npm run build:es && npm run build:types && npm run build:prod",
"build:types": "tsc --project ./tsconfig.types.json",
"build:es": "tsc --project ./tsconfig.es.json",
"build:prod": "cross-env NODE_ENV=production webpack --config ./scripts/webpack/webpack.config.prod.js",
"build:analyze": "cross-env NODE_ENV=production BUILD_ANALYZE=true webpack --config ./scripts/webpack/webpack.config.prod.js --env.analyze",
"test": "jest --config ./scripts/jest/jest.config.json",
"test:watch": "npm test -- --watch",
"test:cov": "npm run cleanCov && npm test -- --coverage",
"test:update": "npm test -- --updateSnapshot"
},
"dependencies": {
"classnames": "^2.3.1",
"eventemitter3": "^4.0.7",
"tslib": "^2.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-zoro": "^5.0.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"less": "^4.1.2",
"less-loader": "^10.1.0",
"lint-staged": "^11.2.3",
"mini-css-extract-plugin": "^2.4.2",
"rimraf": "^3.0.2",
"style-loader": "^3.3.0",
"terser-webpack-plugin": "^5.2.4",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"webpack": "^5.58.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpackbar": "^5.0.0-3"
}
}