forked from fnune/spot.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 959 Bytes
/
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
{
"name": "spot.js",
"version": "1.0.1",
"description": "Easily implement mouse event related effects on your website.",
"main": "spot.js",
"devDependencies": {
"uglifyjs": "^2.4.10"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run minify",
"prepublish": "npm run build",
"postinstall": "npm run build",
"minify": "uglifyjs --c --m --screw-ie8 --o spot.min.js spot.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brainlessdeveloper/spot.js.git"
},
"keywords": [
"JavaScript",
"mousemove",
"effect",
"plugin"
],
"author": "Fausto Núñez Alberro <fausto.nunez@outlook.com> (http://brainlessdeveloper.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/brainlessdeveloper/spot.js/issues"
},
"homepage": "https://github.com/brainlessdeveloper/spot.js#readme"
}