diff --git a/package.json b/package.json new file mode 100644 index 0000000..79e74c6 --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "testpilot", + "version": "1.0.0", + "description": "test", + "main": "test.js", + "scripts": { + "test": "test" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/JustinBStrong/testpilot.git" + }, + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/JustinBStrong/testpilot/issues" + }, + "homepage": "https://github.com/JustinBStrong/testpilot#readme", + "dependencies": { + "jest": "^29.7.0" + } +} diff --git a/test.js b/test.js new file mode 100644 index 0000000..71a2da4 --- /dev/null +++ b/test.js @@ -0,0 +1,3 @@ +export function add(a, b) { + return a + b; +}