-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "simulation-cloud",
"version": "0.0.0",
"description": "Monte Carlo Model Sampler",
"main": "index.js",
"scripts": {
"start": "nodemon lib/index.js --exec babel-node",
"debug": "nodemon --debug lib/index.js --exec babel-node",
"build": "babel lib -d dist",
"serve": "node dist/index.js",
"test": "mocha --compilers js:babel-register"
},
"keywords": [
"monte",
"carlo",
"quantitative",
"modeling"
],
"author": "Matthew McDermott",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"body-parser": "^1.15.0",
"cors": "^2.7.1",
"discrete-sampling": "^1.0.2",
"express": "^4.13.4",
"financejs": "^3.0.0",
"jstat": "^1.5.2",
"lodash": "^4.11.1",
"mathjs": "^3.2.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-register": "^6.7.2",
"mocha": "^2.4.5",
"nodemon": "^1.9.1"
},
"repository": {
"type": "git",
"url": "git://github.com/getguesstimate/simulation-cloud.git"
}
}