{
	"name": "sql.js-fts5",
	"version": "1.4.0",
	"description": "SQLite library with support for opening and writing databases, prepared statements, and more. This SQLite library is in pure javascript (compiled with emscripten).",
	"keywords": [
		"sql",
		"sqlite",
		"stand-alone",
		"relational",
		"database",
		"RDBMS",
		"data",
		"query",
		"statement",
		"emscripten",
		"asm",
		"asm.js"
	],
	"license": "MIT",
	"main": "./dist/sql-wasm.js",
	"scripts": {
		"build": "make",
		"rebuild": "make clean && make",
		"test": "npm run lint && npm run test-asm && npm run test-asm-debug && npm run test-wasm && npm run test-wasm-debug && npm run test-asm-memory-growth",
		"lint": "eslint .",
		"prettify": "eslint . --fix",
		"test-asm": "node test/all.js asm",
		"test-asm-debug": "node test/all.js asm-debug",
		"test-asm-memory-growth": "node test/all.js asm-memory-growth",
		"test-wasm": "node test/all.js wasm",
		"test-wasm-debug": "node test/all.js wasm-debug",
		"doc": "jsdoc -c .jsdoc.config.json"
	},
	"homepage": "http://github.com/sql-js/sql.js",
	"repository": {
		"type": "git",
		"url": "http://github.com/sql-js/sql.js.git"
	},
	"bugs": {
		"url": "https://github.com/sql-js/sql.js/issues"
	},
	"devDependencies": {
		"clean-jsdoc-theme": "^2.2.14",
		"eslint": "^6.8.0",
		"eslint-config-airbnb-base": "^14.2.0",
		"eslint-plugin-import": "^2.22.1",
		"jsdoc": "^3.6.6",
		"puppeteer": "^2.1.1",
		"test": ">=0.6"
	},
	"dependencies": {}
}
