New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

picobel

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

picobel - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

.npmignore

30

package.json
{
"name": "picobel",
"version": "1.0.6",
"description": "A lightweight dependency-free tool that converts html audio tags into styleable markup.",
"main": "picobel.js",
"version": "1.0.7",
"description": "Convert html audio tags into styleable markup.",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "babel esm --out-dir cjs",
"prepublishOnly": "npm run build"
},

@@ -14,7 +16,23 @@ "repository": {

"author": "Tom Hazledine <tom@tomhazledine.com> (https://tomhazledine.com)",
"license": "ISC",
"license": "GPL-3.0",
"homepage": "https://github.com/tomhazledine/picobel#readme",
"bugs": {
"url": "https://github.com/tomhazledine/picobel/issues"
},
"homepage": "https://github.com/tomhazledine/picobel#readme"
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
}
}

@@ -147,12 +147,2 @@ <p align="center"><a href="https://audio.tomhazledine.com" target="_blank"><img width="200"src="https://audio.tomhazledine.com/assets/images/heroLogo.png"></a></p>

### Install the Picobel dev environemnt
Picobel >1.0.0 is writen in modern JavaScript (i.e. using ES6 features, especially modules). The cross-browser production version is compiled with Webpack. The Webpack build is triggered by an npm script, and npm is also used to run the suite of tests.
To get started, clone this repo and run `npm install`. This will download and install the dependencies we require before we can work on Picobel's code. (Note: you will need Node and NPM installed on your machine before running `npm install`).
Run `npm run develop` to begin working on Picobel. This command sets up a "watch" function that will listen for changes in the source files, and compile the production "build" when changes are made. `npm run build` will do the same compilation but doesn't watch anything.
The source files (this is where you should make your changes) are in the `src` directory, and the output files are saved into a directory called `build`. The output files are overwritten every time a change is made to the source files. This is done using Webpack, and allows us to use modules in our source files but only create one file for use in production.
---

@@ -159,0 +149,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc