mirror of
https://github.com/ilyakooo0/purescript-indexed-DB.git
synced 2024-11-26 00:27:09 +03:00
43 lines
1.4 KiB
JSON
43 lines
1.4 KiB
JSON
|
{
|
||
|
"name": "purescript-indexeddb",
|
||
|
"version": "1.0.0",
|
||
|
"description": "This document is a general grooming of the current state of the IndexedDB API. It covers only the features specified in the official specs.",
|
||
|
"main": "bundle.js",
|
||
|
"scripts": {
|
||
|
"test:build": "pulp browserify -j 4 --main \"Test.Main\" -I test --to dist/karma/index.js",
|
||
|
"test:run": "karma start --single-run",
|
||
|
"test": "npm run test:build && npm run test:run",
|
||
|
"build": "pulp browserify -j 4 -O --to dist/bundle.js",
|
||
|
"start": "pulp -w browserify -j 4 -O --to dist/bundle.js"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"eslint": "^3.19.0",
|
||
|
"eslint-config-airbnb": "^15.0.1",
|
||
|
"eslint-plugin-import": "^2.3.0",
|
||
|
"eslint-plugin-jsx-a11y": "^5.0.3",
|
||
|
"eslint-plugin-react": "^7.1.0",
|
||
|
"karma": "^1.7.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"eslint": "3.19.0",
|
||
|
"eslint-config-airbnb": "15.0.1",
|
||
|
"eslint-plugin-import": "2.5.0",
|
||
|
"eslint-plugin-jsx-a11y": "5.0.3",
|
||
|
"eslint-plugin-react": "7.1.0",
|
||
|
"karma": "1.7.0",
|
||
|
"karma-chrome-launcher": "2.1.1",
|
||
|
"karma-firefox-launcher": "1.0.1",
|
||
|
"karma-spec-reporter": "0.0.31"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/Truqu/purescript-indexeddb.git"
|
||
|
},
|
||
|
"author": "",
|
||
|
"license": "ISC",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/Truqu/purescript-indexeddb/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/Truqu/purescript-indexeddb#readme"
|
||
|
}
|