1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-12 23:35:58 +00:00

Adding in test case runner

This commit is contained in:
Scott Tolksdorf
2018-04-08 21:35:53 -04:00
parent 3f728e7993
commit 8f77ac9e56
2 changed files with 1501 additions and 4 deletions

1489
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -8,15 +8,22 @@
"build": "node scripts/build.js", "build": "node scripts/build.js",
"lint": "eslint --fix **/*.{js,jsx}", "lint": "eslint --fix **/*.{js,jsx}",
"lint:dry": "eslint **/*.{js,jsx}", "lint:dry": "eslint **/*.{js,jsx}",
"circleci": "eslint **/*.{js,jsx} --max-warnings=0", "circleci": "npm test && eslint **/*.{js,jsx} --max-warnings=0",
"test": "pico-check",
"test:dev": "pico-check -v -w",
"phb": "node scripts/phb.js", "phb": "node scripts/phb.js",
"prod": "set NODE_ENV=production&& npm run build", "prod": "set NODE_ENV=production && npm run build",
"postinstall": "npm run build", "postinstall": "npm run build",
"start": "node server.js" "start": "node server.js"
}, },
"author": "stolksdorf", "author": "stolksdorf",
"license": "MIT", "license": "MIT",
"eslintIgnore": ["build/*"], "eslintIgnore": [
"build/*"
],
"pico-check":{
"require": "./tests/test.init.js"
},
"dependencies": { "dependencies": {
"babel-preset-env": "^1.1.8", "babel-preset-env": "^1.1.8",
"basic-auth": "^1.0.3", "basic-auth": "^1.0.3",
@@ -42,6 +49,7 @@
}, },
"devDependencies": { "devDependencies": {
"eslint": "^4.19.1", "eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0" "eslint-plugin-react": "^7.7.0",
"pico-check": "^1.0.3"
} }
} }