-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 835 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "js-testing-example",
"version": "0.0.1",
"type": "module",
"description": "JavaScript testing example for demonstration purposes",
"main": "src/index.js",
"scripts": {
"test": "mocha --require esm test/**/*.spec.js",
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix"
},
"keywords": [
"testing",
"example",
"mocha",
"chai"
],
"author": "Mohamed Sallam <sallamx99@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"mocha": "^6.2.0",
"prettier": "^1.18.2"
}
}