-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "nelson-cloud",
"version": "1.4.4",
"description": "nelson on the cloud",
"copyright": "Copyright © 2018-present Allan CORNET",
"main": "./main.js",
"bin": {
"nelson-cloud": "./nelson-cloud.js"
},
"author": {
"name": "Allan CORNET",
"email": "[email protected]",
"url": "https://nelson-lang.github.io/nelson-website/"
},
"license": "GPL-2.0",
"scripts": {
"lint": "eslint --fix .",
"prettier": "prettier --write **/*.{js,md}",
"jest": "jest .",
"test": "jest .",
"coverage": "npm run jest -- --coverage",
"testw": "npm run jest -- --watch",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"start": "node main.js",
"dockerInstall": "docker pull nelsonsoftware/nelson-sio-cli:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nelson-lang/nelson-cloud.git"
},
"keywords": [
"matrix-functions",
"interpreter",
"scientific-computing",
"programming-language"
],
"bugs": {
"url": "https://github.com/nelson-lang/nelson-cloud/issues"
},
"homepage": "https://github.com/nelson-lang/nelson-cloud#README.md",
"devDependencies": {
"eslint": "9.17.0",
"eslint-plugin-jest": "28.9.0",
"prettier": "3.4.2",
"jest": "29.7.0"
},
"dependencies": {
"child_process": "1.0.2",
"express": "4.21.2",
"express-rate-limit": "7.4.1",
"find-free-port": "2.0.0",
"ip-address": "10.0.1",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
}
}