-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc9f9d9
commit f8d31dd
Showing
65 changed files
with
970 additions
and
746 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
node_modules | ||
npm-debug.log | ||
dist | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,12 @@ | |
], | ||
"main": "src/index.js", | ||
"scripts": { | ||
"lint": "eslint 'src/**/*.js'", | ||
"mocha": "mocha --timeout 5000 src/test/w3c src/test/fakeIndexedDB", | ||
"build-qunit": "rm -rf dist && mkdir dist && browserify src/test/exports-qunit.js -o dist/exports-qunit.js -t [ babelify --presets [ es2015 ] ]", | ||
"qunit": "npm run build-qunit && node-qunit-phantomjs ./src/test/indexedDBmock/index.html", | ||
"test": "npm run lint && npm run mocha && npm run qunit" | ||
"build": "rm -rf build && tsc", | ||
"lint": "tslint 'src/**/*.ts' && eslint 'src/**/*.js'", | ||
"mocha": "mocha --timeout 10000 build/test/w3c build/test/fakeIndexedDB", | ||
"build-qunit": "browserify build/test/exports-qunit.js -o build/exports-qunit-bundle.js -t [ babelify --presets [ es2015 ] ] && cp src/test/indexedDBmock/index.html build/test/indexedDBmock/index.html", | ||
"qunit": "npm run build-qunit && node-qunit-phantomjs build/test/indexedDBmock/index.html", | ||
"test": "npm run lint && npm run build && npm run mocha && npm run qunit" | ||
}, | ||
"author": "Jeremy Scheff <[email protected]> (http://dumbmatter.com/)", | ||
"license": "Apache-2.0", | ||
|
@@ -35,13 +36,15 @@ | |
"setimmediate": "^1.0.5" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^7.0.13", | ||
"babel-polyfill": "^6.23.0", | ||
"babel-preset-es2015": "^6.24.1", | ||
"babelify": "^7.3.0", | ||
"browserify": "^14.0.0", | ||
"eslint": "^3.15.0", | ||
"mocha": "^3.2.0", | ||
"node-qunit-phantomjs": "^1.5.0", | ||
"qunitjs": "^1.23.1" | ||
"qunitjs": "^1.23.1", | ||
"tslint": "^5.1.0", | ||
"typescript": "^2.2.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.