-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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
{
"name": "lavalamp",
"description": "Lava Lamp is a JavaScript plugin for menus. It creates a div that moves when you hover over an element, giving it an elastic animation.",
"keywords": [
"navigation",
"navbar",
"nav",
"animation",
"hover",
"CSS3 transitions",
"menu"
],
"version": "2.0.0",
"types": "types/index.d.ts",
"author": {
"name": "Richard Hung",
"email": "richardhung111@gmail.com",
"url": "https://www.magicmediamuse.com/"
},
"scripts": {
"copy-to-docs": "cp -r ./build/. ./docs/assets",
"docs": "cd ./docs && bundle exec jekyll serve --livereload",
"dev": "nodemon",
"lint": "npx eslint ./src/ --ext .js,.jsx,.ts,.tsx",
"build": "rm -rf ./build/ && npm run wp && npm run scss && npm run copy-to-docs",
"scss": "sass ./src/lavalamp.scss ./build/css/lavalamp.css",
"wp": "webpack"
},
"licenses": [
{
"type": "Creative Commons Attribution-NonCommercial 3.0 Unported License",
"url": "http://creativecommons.org/licenses/by-nc/3.0/deed.en_US"
}
],
"main": "build/js/lavalamp.js",
"repository": {
"type": "git",
"url": "https://github.com/Richard1320/Lava-Lamp.git"
},
"bugs": {
"url": "https://github.com/Richard1320/Lava-Lamp/issues"
},
"homepage": "https://richard1320.github.io/Lava-Lamp/",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"nodemon": "^2.0.7",
"sass": "^1.30.0",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"browser": true,
"node": false
},
"rules": {
"@typescript-eslint/ban-ts-comment": "off"
}
}
}