-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 799 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 799 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": "fi-compiler",
"version": "0.2.0",
"description": "Core compiler library for fi, a high-level language for Michelson",
"main": "index.js",
"scripts": {
"build": "webpack",
"lint": "eslint --ext .js --ignore-pattern dist/* .",
"test": "jest",
"coverage": "jest --coverage"
},
"author": "TezTech Labs",
"license": "MIT",
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-ayotte": "^1.3.12",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.2",
"eslint-plugin-promise": "^4.0.1",
"jest": "^24.5.0",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"bignumber.js": "^8.1.1",
"js-sha256": "^0.9.0",
"text-encoding": "^0.7.0"
}
}