-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 892 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
35
36
37
38
39
40
41
42
{
"name": "brents-method",
"version": "2.0.1",
"description": "A root solver for functions using Brent's Method.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "github.com/limeandcoconut/brents-method"
},
"keywords": [
"brent",
"brents method",
"root",
"solver"
],
"author": "Jacob Smith <[email protected]>",
"license": "ISC",
"jest": {
"reporters": [
[
"jest-nyancat-reporter",
{
"suppressErrorReporter": false
}
]
]
},
"dependencies": {},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-limeandcoconut": "^1.3.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-unicorn": "^20.1.0",
"eslint-plugin-vue": "^6.2.2",
"jest": "^26.1.0",
"jest-nyancat-reporter": "^2.0.0",
"chai": "^4.2.0"
}
}