Changed package name in config files to lower case to match npm package rules

This commit is contained in:
Ben Ashton 2021-03-02 01:20:21 -08:00
parent 2d4302b6a5
commit 05ebbfc163
2 changed files with 7 additions and 3 deletions

View File

@ -1,13 +1,17 @@
{ {
"name": "PawSQLite", "name": "pawsqlite",
"version": "1.0.0", "version": "1.0.0",
"description": "An SQLite interface with adapters for Cordova and WebSQL", "description": "An SQLite interface with adapters for Cordova and WebSQL",
"main": "./lib/PawSQLite.js", "main": "./lib/pawsqlite.js",
"module": "./src/pawsqlite.mjs", "module": "./src/pawsqlite.mjs",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack" "build": "webpack"
}, },
"repository": {
"type": "git",
"url": "https://git.n0m.org/n0m/PawSQLite.git"
},
"author": "Ben Ashton", "author": "Ben Ashton",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {

View File

@ -1,5 +1,5 @@
var webpack = require('webpack'); var webpack = require('webpack');
var libraryName = 'PawSQLite'; var libraryName = 'pawsqlite';
var outputFile = libraryName + '.js'; var outputFile = libraryName + '.js';
var config = { var config = {