aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-03-07 18:21:57 +0100
committerGitHub <noreply@github.com>2022-03-07 18:21:57 +0100
commit9c5fd198c11a0e2b976c6a2802eff9c4fef836f6 (patch)
treef6396236461c1e60a943a57f2d8227b9c2b639bf /package.json
parentccbca8b9cede972480dd1ef7a73db71a99be9609 (diff)
parentc665571c930d877316940eae53e7e79640411aae (diff)
Merge pull request #96 from caleb-mabry/move-iniparser
Move INI parser
Diffstat (limited to 'package.json')
-rw-r--r--package.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/package.json b/package.json
index 7971138..27fd577 100644
--- a/package.json
+++ b/package.json
@@ -7,7 +7,8 @@
"babel": "babel ui.js -o ui.b.js",
"webpack": "webpack",
"deploy": "cross-env NODE_ENV=production webpack -p",
- "test": "echo \"Error: no test specified\" && exit 1",
+ "test": "jest",
+ "test:coverage": "jest --coverage",
"build": "webpack --config webpack.config.js",
"start": "webpack serve --config webpack.config.js",
"lint": "eslint . --ext .js",
@@ -24,12 +25,14 @@
"homepage": "https://github.com/AttorneyOnline/webAO#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
+ "@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
+ "jest": "^27.5.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"