-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.77 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
{
"name": "@autots/lazyload",
"version": "1.2.1",
"description": "A LazyLoad lib implemented through IntersectionObserver API",
"main": "dist/lazyload.umd.js",
"browser": "dist/lazyload.umd.js",
"types": "lib/lazyload.d.ts",
"scripts": {
"dev": "webpack-dev-server --mode=development --config ./build/webpack.config.js --open",
"build:umd": "webpack --mode=production --config ./build/webpack.config.js",
"build:es6": "tsc --target es6 --moduleResolution node -d",
"release": "npm run build:umd && npm run build:es6",
"lint": "eslint src --ext .ts",
"test": "test"
},
"keywords": [
"lazy",
"lazyload",
"ts",
"typescript"
],
"author": "Magn Mah <[email protected]>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^1.13.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"intersection-observer": "^0.7.0"
},
"homepage": "https://github.com/magnnus/lazyload-observer",
"repository": {
"type": "git",
"url": "git+https://github.com/magnnus/lazyload-observer.git"
},
"bugs": {
"url": "https://github.com/magnnus/lazyload-observer/issues"
},
"files": [
"lib/*.js",
"lib/*.ts",
"dist/*.js"
]
}