-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.08 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
{
"name": "ldpc-js",
"version": "1.0.0",
"description": "Javascript implementation of Low-parity density codes (for education purposes).",
"main": "ldpc.js",
"scripts": {
"build": "node ./node_modules/webpack/bin/webpack.js --minimize",
"start": "node ./build/bundle.js",
"setup-esformatter": "npm install esformatter esformatter-align esformatter-asi esformatter-braces esformatter-collapse-objects esformatter-dot-notation esformatter-flow esformatter-jsx esformatter-limit-linebreaks esformatter-literal-notation esformatter-parseint esformatter-quote-props esformatter-quotes esformatter-remove-trailing-commas esformatter-spaced-lined-comment esformatter-var-each"
},
"author": "Botezatu Mihai Catalin",
"license": "ISC",
"dependencies": {
"mathjs": "^3.11.5",
"readline-sync": "^1.4.7",
"sleep": "^5.1.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-env": "^1.1.4",
"babel-preset-es2015": "^6.24.1",
"json-loader": "^0.5.4",
"node-loader": "^0.6.0",
"webpack": "^1.14.0"
}
}