mirror of
https://github.com/jakejarvis/npm-module-template.git
synced 2025-04-26 04:05:23 -04:00
60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "@jakejarvis/my-module",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"description": "Just a personal NPM/browser module boilerplate to my liking, probably not very useful to anybody else. :)",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/jakejarvis/my-module",
|
|
"author": {
|
|
"name": "Jake Jarvis",
|
|
"email": "jake@jarv.is",
|
|
"url": "https://jarv.is/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jakejarvis/my-module.git"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/my-module.cjs.js",
|
|
"module": "./dist/my-module.esm.js",
|
|
"unpkg": "./dist/my-module.min.js",
|
|
"types": "./dist/my-module.d.ts",
|
|
"exports": {
|
|
"require": "./dist/my-module.cjs.js",
|
|
"import": "./dist/my-module.esm.js",
|
|
"browser": "./dist/my-module.min.js"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"watch": "rollup -c -w",
|
|
"lint": "eslint .",
|
|
"test": "echo \"Tests are important. ;)\"",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.15.8",
|
|
"@babel/eslint-parser": "^7.15.8",
|
|
"@babel/preset-env": "^7.15.8",
|
|
"@jakejarvis/eslint-config": "*",
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
"@rollup/plugin-commonjs": "^21.0.0",
|
|
"@rollup/plugin-eslint": "^8.0.1",
|
|
"@rollup/plugin-node-resolve": "^13.0.5",
|
|
"builtin-modules": "^3.2.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-compat": "^3.13.0",
|
|
"eslint-plugin-import": "^2.24.2",
|
|
"rollup": "^2.58.0",
|
|
"rollup-plugin-copy": "^3.4.0",
|
|
"rollup-plugin-delete": "^2.0.0",
|
|
"rollup-plugin-filesize": "^9.1.1",
|
|
"rollup-plugin-node-externals": "^2.2.0",
|
|
"rollup-plugin-terser": "^7.0.2"
|
|
},
|
|
"keywords": []
|
|
}
|