forked from vpotseluyko/mjs-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 817 Bytes
/
package.json
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": "mjs-mocha",
"version": "3.0.0",
"description": "Simple (very) polyfill to emulate mocha tests in mjs enviroment. For use simply import",
"keywords": [
"mocha",
"mjs",
"tests",
"polyfill"
],
"main": "src/mocha.mjs",
"bin": {
"mjs-mocha": "src/index.js"
},
"scripts": {
"test": "cd test && npm i && npm run test",
"eslint": "eslint ./ --ext .js,.mjs",
"eslint:fix": "eslint ./ --ext .js,.mjs --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/vpotseluyko/mjs-mocha"
},
"author": "vyacheslav.potseluyko@gmail.com",
"contributors": [
"romap0 <pavlov@pqlab.ru>"
],
"license": "ISC",
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}