Skip to content

Commit cd195a1

Browse files
committed
control and declare
1 parent 93edea3 commit cd195a1

File tree

6 files changed

+3477
-0
lines changed

6 files changed

+3477
-0
lines changed

Diff for: jest.config.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* For a detailed explanation regarding each configuration property, visit:
3+
* https://jestjs.io/docs/configuration
4+
*/
5+
6+
module.exports = {
7+
clearMocks: true,
8+
9+
collectCoverage: true,
10+
11+
coverageDirectory: "coverage",
12+
13+
testMatch: ["<rootDir>/test/*.test.js"],
14+
};

Diff for: package.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "js-interpreter",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/MrPluto0/js-interpreter.git"
12+
},
13+
"keywords": [],
14+
"author": "",
15+
"license": "ISC",
16+
"bugs": {
17+
"url": "https://github.com/MrPluto0/js-interpreter/issues"
18+
},
19+
"homepage": "https://github.com/MrPluto0/js-interpreter#readme",
20+
"dependencies": {
21+
"acorn": "^8.7.0",
22+
"jest": "^27.5.1"
23+
}
24+
}

0 commit comments

Comments
 (0)