-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 874 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 874 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
31
32
33
34
35
36
37
{
"name": "eos-common",
"version": "0.12.0",
"description": "EOSIO Smart Contract common library used for Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Denis Carriere <@DenisCarriere>",
"contributors": [
"John Williamson <@Velua>",
"Yaro <@YaroShkvorets>",
"Artem <@Avm07>"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run test && npm run build",
"test": "jest --coverage",
"docs": "tsc --target ES2019 && documentation readme dist/eosiolib/**.js -s API"
},
"repository": "git@github.com:EOS-Nation/eos-common.git",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"devDependencies": {
"@types/jest": "*",
"jest": "*",
"ts-jest": "*",
"typescript": "*"
},
"dependencies": {
"big-integer": "1.x"
}
}