-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 KB
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
{
"name": "@danielzm/particles-pointer-tracker",
"version": "1.0.2",
"description": "Drawing particles that follows the mouse pointer.",
"main": "./dist/particles-pointer-tracker.js",
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.config.js",
"build:demo": "cd demo; yarn install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-z/particles-pointer-tracker.git"
},
"keywords": [
"javascript",
"particles",
"canvas",
"2d",
"animation"
],
"author": "Daniel Zamorano <daniel.zamorano.m@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/daniel-z/particles-pointer-tracker/issues"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@babel/runtime": "^7.6.0",
"core-js": "3",
"dat.gui": "^0.7.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"homepage": "https://github.com/daniel-z/particles-pointer-tracker#readme",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"copy-webpack-plugin": "^5.0.4",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9"
}
}