-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.39 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": "js-matrix-text",
"version": "1.0.0",
"description": "A script to create matrix effects in your texts.",
"main": "build/index.js",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"build": "webpack",
"test": "jest",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helderburato/js-matrix-text.git"
},
"keywords": [
"javascript",
"text",
"matrix",
"hover",
"random",
"onmouseenter",
"onmouseleave"
],
"author": "Helder Burato Berto <helder.burato@gmail.com> (https://helderburato.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/helderburato/js-matrix-text/issues"
},
"homepage": "https://github.com/helderburato/js-matrix-text#readme",
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.4.5",
"babel-eslint": "10.0.1",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"husky": "2.4.0",
"jest": "24.8.0",
"prettier": "1.18.2",
"webpack": "4.33.0",
"webpack-cli": "3.3.3",
"webpack-dev-server": "3.7.1"
}
}