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",
|
"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": {
|
||||||
|
@ -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 = {
|
||||||
|
Loading…
Reference in New Issue
Block a user