-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 838 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 838 Bytes
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
{
"name": "cicada-solver",
"version": "1.0.0",
"main": "app.js",
"license": "MIT",
"scripts": {
"start": "NODE_OPTIONS=--max_old_space_size=4096 babel-node src/app.js",
"build": "babel src --out-dir dist --ignore '**/*.test.js' --copy-files && del dist/**/*.test.js",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/preset-env": "^7.6.2",
"del-cli": "^3.0.0",
"jest": "^24.9.0"
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"del": "^5.1.0",
"mathjs": "^6.2.2",
"ml-matrix": "^6.4.1",
"mnemonist": "^0.30.0",
"regenerator-runtime": "^0.13.3",
"translate": "^1.1.0"
}
}