mirror of
https://github.com/jakejarvis/simple-anchor.git
synced 2025-04-26 14:18:26 -04:00
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "simple-anchor",
|
|
"version": "1.0.1",
|
|
"author": "Jake Jarvis (https://github.com/jakejarvis)",
|
|
"contributors": [
|
|
"Bryan Braun (https://github.com/bryanbraun)"
|
|
],
|
|
"description": "A bare-bones fork of AnchorJS.",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/jakejarvis/simple-anchor",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jakejarvis/simple-anchor.git"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/simple-anchor.cjs.js",
|
|
"module": "./dist/simple-anchor.esm.js",
|
|
"unpkg": "./dist/simple-anchor.min.js",
|
|
"types": "./dist/simple-anchor.d.ts",
|
|
"exports": {
|
|
"require": "./dist/simple-anchor.cjs.js",
|
|
"import": "./dist/simple-anchor.esm.js",
|
|
"browser": "./dist/simple-anchor.min.js"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"lint": "eslint .",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.15.0",
|
|
"@babel/preset-env": "^7.15.0",
|
|
"@jakejarvis/eslint-config": "^1.0.1",
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
"@rollup/plugin-eslint": "^8.0.1",
|
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-compat": "^3.13.0",
|
|
"eslint-plugin-import": "^2.24.2",
|
|
"rollup": "^2.56.3",
|
|
"rollup-plugin-copy": "^3.4.0",
|
|
"rollup-plugin-delete": "^2.0.0",
|
|
"rollup-plugin-filesize": "^9.1.1",
|
|
"rollup-plugin-terser": "^7.0.2"
|
|
},
|
|
"keywords": [
|
|
"frontend",
|
|
"anchor",
|
|
"links",
|
|
"dom",
|
|
"browser"
|
|
]
|
|
}
|