-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 887 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
{
"name": "optifunc",
"version": "1.1.5",
"description": "A NPM module to tests your function to make them better and faster",
"repository": {
"type": "git",
"url": "https://github.com/emilhein/optifunc"
},
"main": "index.js",
"scripts": {
"lint": "eslint ./index.js",
"test": "npm run lint && nyc --reporter=html mocha",
"cover": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"coveralls": "3.0.7",
"eslint": "6.5.1",
"eslint-plugin-babel": "4.x.x",
"mocha": "^6.2.2",
"nyc": "14.1.1"
},
"dependencies": {},
"keywords": [
"functions",
"test",
"optimization",
"executionTime",
"function execution"
],
"author": "Emil Hein Eriksen",
"license": "ISC"
}