-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.25 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.25 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "fractal-generator",
"version": "1.0.10",
"description": "A Node.js application for generating fractals using advanced mathematical models.",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/server.js",
"test": "mocha 'test/**/*.test.js' --recursive",
"test:unit": "mocha 'test/unit/**/*.test.js' --recursive",
"test:integration": "mocha 'test/integration/**/*.test.js' --recursive",
"test:watch": "mocha 'test/**/*.test.js' --recursive --watch",
"test:coverage": "c8 mocha 'test/**/*.test.js' --recursive",
"test:ci": "c8 --reporter=lcov mocha 'test/**/*.test.js' --recursive --reporter=mocha-junit-reporter",
"test:performance": "mocha 'test/performance/**/*.test.js' --recursive --timeout 10000",
"test:e2e": "mocha 'test/e2e/**/*.test.js' --recursive --timeout 30000",
"test:stress": "mocha 'test/stress/**/*.test.js' --recursive --timeout 60000",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"watch": "nodemon src/server.js --watch src"
},
"keywords": [
"fractal",
"generator",
"nodejs",
"mathematics",
"fractional-calculus",
"fractals",
"numerical-methods",
"fractal-fractional",
"Laplace-Adomian",
"Shehu-transform",
"Sine-Gordon"
],
"author": "Your Name <your-email@example.com>",
"license": "MIT",
"dependencies": {
"@vercel/kv": "^3.0.0",
"canvas": "^2.11.2",
"express": "^4.21.1",
"http": "0.0.1-security",
"mathjs": "^13.2.0",
"pg": "^8.13.0",
"uuid": "^10.0.0",
"winston": "^3.15.0",
"ws": "^8.18.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22.7.8",
"c8": "^8.0.0",
"chai": "^5.1.1",
"eslint": "^8.56.0",
"eslint-plugin-mocha": "^10.2.0",
"mocha": "^10.7.3",
"mocha-junit-reporter": "^2.2.1",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.7",
"playwright": "^1.41.0",
"sinon": "^17.0.1",
"supertest": "^6.3.4"
},
"engines": {
"node": ">=14.0.0"
}
}