mirror of
https://github.com/ilyakooo0/purescript-indexed-DB.git
synced 2024-11-29 13:45:48 +03:00
47 lines
1.8 KiB
JSON
47 lines
1.8 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:watch": "find . -type f -regex '.*\\(src\\|test\\).*' ! -regex '.*bower_components.*\\|.*node_modules.*|.*\\.sw.*' | entr -s 'npm run test'",
|
|
"test": "npm run test:build && npm run test:run",
|
|
"build": "pulp browserify -j 4 -O --to dist/bundle.js",
|
|
"start": "find . -type f -regex '.*\\(src\\|test\\).*' ! -regex '.*bower_components.*\\|.*node_modules.*|.*\\.sw.*' | entr -s 'clear; pulp browserify -j 4 -t dist/bundle.js'",
|
|
"start:test": "karma start"
|
|
},
|
|
"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-mocha": "^1.3.0",
|
|
"karma-spec-reporter": "0.0.31",
|
|
"mocha": "^3.4.2"
|
|
},
|
|
"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"
|
|
}
|