Added more packages to dependencies in package.json and added module type to scripts in index.html

This commit is contained in:
Joshua Li 2021-11-16 23:01:51 -05:00
parent b1905594c5
commit 870dcf90c2
2 changed files with 17 additions and 8 deletions

View File

@ -15,6 +15,8 @@
"homepage": "http://filerjs.github.io/filer", "homepage": "http://filerjs.github.io/filer",
"bugs": "https://github.com/filerjs/filer/issues", "bugs": "https://github.com/filerjs/filer/issues",
"license": "BSD-2-Clause", "license": "BSD-2-Clause",
"testpath1": "filer.js",
"testpath2": "filer.min.js",
"scripts": { "scripts": {
"eslint": "npm run lint", "eslint": "npm run lint",
"eslint:fix": "npm run lint:fix", "eslint:fix": "npm run lint:fix",
@ -23,14 +25,14 @@
"test:node": "mocha --timeout 5000 tests", "test:node": "mocha --timeout 5000 tests",
"pretest:node-debug": "echo \"Open Chrome to chrome://inspect to debug tests...\"", "pretest:node-debug": "echo \"Open Chrome to chrome://inspect to debug tests...\"",
"test:node-debug": "mocha --timeout 5000 --inspect-brk tests", "test:node-debug": "mocha --timeout 5000 --inspect-brk tests",
"test:manual": "parcel tests/index.html --out-dir tests/dist", "test:manual": "parcel tests/index.html --dist-dir tests/dist",
"test:migrations": "mocha tests/filesystems/migrations", "test:migrations": "mocha tests/filesystems/migrations",
"pretest": "npm run lint", "pretest": "npm run lint",
"test": "npm run karma-mocha", "test": "npm run karma-mocha",
"posttest": "npm run test:migrations", "posttest": "npm run test:migrations",
"prebuild": "parcel build --global Filer src/index.js --no-minify --out-file filer.js", "prebuild": "parcel build --global Filer src/index.js --no-minify testpath1",
"build": "parcel build --global Filer src/index.js --out-file filer.min.js --detailed-report", "build": "parcel build --global Filer src/index.js testpath2 --detailed-report",
"build-tests": "parcel build tests/index.js --no-source-maps --out-dir tests/dist", "build-tests": "parcel build tests/index.js --no-source-maps --dist-dir tests/dist",
"prekarma-mocha-firefox": "npm run build-tests", "prekarma-mocha-firefox": "npm run build-tests",
"karma-mocha-firefox": "karma start karma.conf.js --browsers FirefoxHeadless", "karma-mocha-firefox": "karma start karma.conf.js --browsers FirefoxHeadless",
"prekarma-mocha-chrome": "npm run build-tests", "prekarma-mocha-chrome": "npm run build-tests",
@ -45,9 +47,16 @@
"url": "https://github.com/filerjs/filer.git" "url": "https://github.com/filerjs/filer.git"
}, },
"dependencies": { "dependencies": {
"buffer": "^6.0.3",
"chai": "^4.3.4",
"chai-datetime": "^1.8.0",
"es6-promisify": "^7.0.0", "es6-promisify": "^7.0.0",
"fake-indexeddb": "^3.1.7",
"minimatch": "^3.0.4", "minimatch": "^3.0.4",
"schema-utils": "^3.1.1" "path": "^0.12.7",
"process": "^0.11.10",
"schema-utils": "^3.1.1",
"url": "https://github.com/filerjs/filer.git"
}, },
"devDependencies": { "devDependencies": {
"regenerator-runtime": "^0.13.9", "regenerator-runtime": "^0.13.9",

View File

@ -8,8 +8,8 @@
</head> </head>
<body> <body>
<div id="mocha"></div> <div id="mocha"></div>
<script src="../node_modules/chai/chai.js"></script> <script type="module" src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/mocha/mocha.js"></script> <script type="module" src="../node_modules/mocha/mocha.js"></script>
<script> <script>
mocha.setup('bdd').timeout(10000).slow(250); mocha.setup('bdd').timeout(10000).slow(250);
@ -21,6 +21,6 @@
</script> </script>
<!-- Add any new tests to `tests/index.js` --> <!-- Add any new tests to `tests/index.js` -->
<script src="./index.js"></script> <script type="module" src="./index.js"></script>
</body> </body>
</html> </html>