Changed package name in config files to lower case to match npm package rules
This commit is contained in:
parent
2d4302b6a5
commit
05ebbfc163
@ -1,13 +1,17 @@
|
||||
{
|
||||
"name": "PawSQLite",
|
||||
"name": "pawsqlite",
|
||||
"version": "1.0.0",
|
||||
"description": "An SQLite interface with adapters for Cordova and WebSQL",
|
||||
"main": "./lib/PawSQLite.js",
|
||||
"main": "./lib/pawsqlite.js",
|
||||
"module": "./src/pawsqlite.mjs",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "webpack"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.n0m.org/n0m/PawSQLite.git"
|
||||
},
|
||||
"author": "Ben Ashton",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
|
@ -1,5 +1,5 @@
|
||||
var webpack = require('webpack');
|
||||
var libraryName = 'PawSQLite';
|
||||
var libraryName = 'pawsqlite';
|
||||
var outputFile = libraryName + '.js';
|
||||
|
||||
var config = {
|
||||
|
Loading…
Reference in New Issue
Block a user