-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.23 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
{
"name": "expression-eval",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"test": "jest -c jest.config.js",
"test:watch": "jest --watch -c jest.config.js",
"lint": "tslint -p . -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint --fix -p . -c tslint.json 'src/**/*.ts'",
"start": "nodemon"
},
"author": "Open Learning Initiative, Carnegie Mellon University",
"license": "MIT",
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/express-cluster": "^0.0.0",
"algebra.js": "0.2.6",
"express": "^4.16.3",
"express-cluster": "0.0.5",
"jStat": "1.7.1",
"lodash": ">=4.17.11",
"mathjs": "5.1.0",
"nodemon": "^1.18.3",
"numeral": "2.0.6",
"probability-distributions": "0.9.1",
"simple-statistics": "6.1.0",
"ts-jest": "^23.1.3",
"tsconfig-paths": "^3.5.0",
"tsmonad": "^0.8.0",
"vm2": "^3.9.19"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.5.7",
"jest": "^24.8.0",
"ts-node": "^7.0.0",
"tslint": "^5.0.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^3.0.1"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
}
}