-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "@autots/sticky",
"version": "0.0.3",
"description": "a sticky lib to simulate stickily positioned element",
"main": "dist/sticky.js",
"browser": "dist/sticky.js",
"types": "lib/sticky.d.ts",
"dependencies": {},
"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.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"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": [
"sticky",
"scroll"
],
"files": [
"dist",
"lib/*.ts",
"lib/*.js"
],
"author": "Magn Mah",
"homepage": "https://github.com/magnnus/sticky",
"repository": {
"type": "git",
"url": "https://github.com/magnnus/sticky.git"
},
"bugs": {
"url": "https://github.com/magnnus/sticky/issues"
},
"license": "MIT"
}