-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "@glorious/fyzer",
"version": "0.1.10",
"description": "Listen when some element just appears above the page fold",
"main": "dist/fyzer.min.js",
"files": [
"dist/**/*.*"
],
"scripts": {
"format": "eslint 'src/**/*.js'",
"build": "webpack",
"start": "http-server . -p 5000",
"test": "jest",
"prepublishOnly": "rm -rf ./dist && NODE_ENV=production npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glorious-codes/glorious-fyzer.git"
},
"keywords": [
"page",
"fold",
"element",
"listener"
],
"author": "Rafael Camargo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/glorious-codes/glorious-fyzer/issues"
},
"homepage": "https://github.com/glorious-codes/glorious-fyzer#readme",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.1",
"codecov": "^3.8.1",
"eslint": "^5.6.0",
"jest": "^24.9.0",
"terser-webpack-plugin": "^2.3.8",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"shortid": "^2.2.16"
}
}