Adjust package names and remove 'npm test' from payload tester

This commit is contained in:
Elliot DeNolf
2018-04-21 11:23:57 -06:00
parent 0a3db650bd
commit 1d84ca8b53
3 changed files with 8217 additions and 1 deletions

View File

@@ -5,7 +5,6 @@
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node ./node_modules/jest/bin/jest.js",
"watch": "node ./node_modules/nodemon/bin/nodemon.js --watch payload"
},
"author": "",

8194
payload/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

23
payload/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "payload-tester",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node ./node_modules/jest/bin/jest.js",
"watch": "node ./node_modules/nodemon/bin/nodemon.js --watch payload"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.3",
"mongoose": "^5.0.15",
"pug": "^2.0.3"
},
"devDependencies": {
"eslint": "^4.19.1",
"jest": "^22.4.3",
"nodemon": "^1.17.3"
}
}