add dev dependency to test runner

This commit is contained in:
Bruno Windels 2019-02-24 19:25:23 +01:00
parent db53db7007
commit 9e6c69c121
2 changed files with 24 additions and 1 deletions

22
package-lock.json generated
View file

@ -4,6 +4,18 @@
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"colors": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz",
"integrity": "sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==",
"dev": true
},
"commander": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz",
"integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==",
"dev": true
},
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
@ -82,6 +94,16 @@
"statuses": ">= 1.4.0 < 2"
}
},
"impunity": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/impunity/-/impunity-0.0.5.tgz",
"integrity": "sha512-ro+enrZPFTyY2U1sV9NytsyejE2tS5theAArM95iPYYQHUvO9YN0VjgfXP0KJfxwh4Xb6vBTRBmHIgx9GUx2Xg==",
"dev": true,
"requires": {
"colors": "^1.3.3",
"commander": "^2.19.0"
}
},
"inherits": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",

View file

@ -7,7 +7,7 @@
"doc": "doc"
},
"scripts": {
"test": "node --experimental-modules --loader ../js-inline-tests/src/resolve-hook.mjs ../js-inline-tests/src/main.mjs --entryPoint src/main.js --force-esm",
"test": "node_modules/.bin/impunity --entryPoint src/main.js --force-esm",
"start": "node scripts/serve-local.js"
},
"repository": {
@ -22,6 +22,7 @@
"homepage": "https://github.com/bwindels/morpheusjs#readme",
"devDependencies": {
"finalhandler": "^1.1.1",
"impunity": "^0.0.5",
"serve-static": "^1.13.2"
}
}