diff options
author | Alex Yatskov <alex@foosoft.net> | 2020-03-14 13:14:03 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2020-03-14 13:14:03 -0700 |
commit | b77e2afe3a8ef9e96a53dd8ca97d8b913941244b (patch) | |
tree | 818a2f25169845a72b3424b7400b5b07f0f7cacf /package.json | |
parent | d32f4def0eeed1599857bc04c973337a2a13dd8b (diff) | |
parent | 98afe7adae80c6bc9de0c4b996e6f6cb0a5df49d (diff) |
Merge branch 'master' into testing
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package.json b/package.json index 17fdfa82..eb449ea9 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ }, "scripts": { "test": "npm run test-lint && npm run test-code", - "test-lint": "eslint .", - "test-code": "node ./test/test-schema.js && node ./test/test-dictionary.js && node ./test/test-database.js" + "test-lint": "eslint . && node ./test/lint/global-declarations.js", + "test-code": "node ./test/test-schema.js && node ./test/test-dictionary.js && node ./test/test-database.js && node ./test/test-document.js" }, "repository": { "type": "git", @@ -29,6 +29,7 @@ "devDependencies": { "eslint": "^6.8.0", "eslint-plugin-no-unsanitized": "^3.0.2", - "fake-indexeddb": "^3.0.0" + "fake-indexeddb": "^3.0.0", + "jsdom": "^16.2.0" } } |