-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "recycler-view",
"version": "1.1.0",
"description": "Infinite scroll with Dom recycle",
"sideEffects": false,
"scripts": {
"dev": "npm run build && webpack-dev-server --config template/webpack.config.js",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "karma start"
},
"keywords": [
"recycle",
"scroll",
"infinite"
],
"main": "dist/recycler-view.js",
"module": "dist/recycler-view.esm.js",
"author": "hdcoo",
"license": "MIT",
"repository": "https://github.com/hdcoo/recycler-view.git",
"homepage": "https://github.com/hdcoo/recycler-view#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-buble": "^0.21.0",
"@types/jasmine": "^3.5.0",
"@wessberg/rollup-plugin-ts": "^1.1.83",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"core-js": "3",
"css-loader": "^3.4.0",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^2.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"puppeteer": "^2.0.0",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.27.14",
"style-loader": "^1.1.2",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"typescript": "^3.7.4",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}