This repository was archived by the owner on Apr 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.21 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@10up/reading-position",
"version": "0.1.0",
"author": "10up",
"description": "A component that reports reading position/progress on a page while scrolling.",
"main": "./src/reading-position.js",
"style": "./dist/reading-position.css",
"scripts": {
"start": "npm install && npx install-peerdeps --dev @10up/eslint-config && npm run build",
"build": "webpack",
"watch": "webpack --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/10up/component-reading-position.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/10up/component-reading-position/issues"
},
"homepage": "https://github.com/10up/component-reading-position#readme",
"devDependencies": {
"@10up/eslint-config": "^2.0.0",
"@10up/stylelint-config": "^1.0.9",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.8.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.5",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"browserslist": "^4.13.0",
"core-js": "^3.6.4",
"css-loader": "^1.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^22.2.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^2.5.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.4.5",
"postcss": "^7.0.14",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"prettier": "^2.0.5",
"puppeteer": "^2.1.0",
"stylelint": "^9.10.1",
"stylelint-config-wordpress": "^14.0.0",
"stylelint-declaration-use-variable": "^1.7.2",
"stylelint-order": "^2.2.1",
"stylelint-webpack-plugin": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"browserslist": [
"last 2 versions",
"> 1%",
"IE 11"
]
}