forked from dallasjohnson/lamington
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "lamington",
"version": "1.0.0-alpha.6",
"description": "A suite of tools to make building and testing EOS smart contracts easier. ",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc && npm run copy:scripts && npm run copy:configs",
"changelog": "auto-changelog --commit-limit false",
"check:types": "tsc --noEmit",
"copy:scripts": "cp -r ./src/scripts/ ./lib/scripts/",
"copy:configs": "cp -R ./src/eosio-config ./lib/eosio-config; cp -R ./eosio-contracts ./lib/eosio-contracts",
"clean": "rm -rf ./lib",
"docs": "typedoc --out api-docs ./src",
"format": "prettier --write \"src/**/*.ts\"",
"lamington:init": "lamington init",
"prepublishOnly": "npm test",
"prepare": "npm run build",
"test": "TS_NODE_FILES=true mocha --require ts-node/register src/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoinageCrypto/lamington.git"
},
"bin": {
"lamington": "./lib/cli/index.js"
},
"keywords": [
"EOS",
"EOS.io",
"Smart Contract",
"C++",
"wasm",
"Typescript",
"Truffle",
"Compile",
"Deployment",
"Testing",
"Unit Testing",
"Mocha"
],
"author": "Kevin Brown",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoinageCrypto/lamington/issues"
},
"homepage": "https://github.com/CoinageCrypto/lamington#readme",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/chai": "4.2.12",
"@types/chalk": "2.2.0",
"@types/mkdirp": "1.0.1",
"@types/mocha": "8.0.1",
"@types/ncp": "2.0.4",
"@types/node": "14.0.27",
"@types/node-fetch": "2.5.7",
"@types/ora": "3.2.0",
"@types/rimraf": "3.0.0",
"@types/text-encoding": "0.0.35",
"auto-changelog": "2.2.0",
"eosjs-ecc": "4.0.7",
"prettier": "2.0.5",
"ts-node": "8.10.2",
"tsc-watch": "^4.5.0",
"typedoc": "^0.20.34",
"typescript": "3.9.7"
},
"dependencies": {
"@types/chai-as-promised": "^7.1.3",
"@types/elliptic": "^6.4.12",
"axios": "^0.24.0",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "4.1.0",
"clarify": "2.1.0",
"collections": "^5.1.13",
"colors": "1.4.0",
"commander": "6.0.0",
"deep-equal-in-any-order": "^1.1.18",
"docker-cli-js": "https://github.com/Alien-Worlds/docker-cli-js",
"dotenv": "8.2.0",
"eosjs": "^22.1.0",
"glob": "7.1.6",
"got": "11.5.2",
"mkdirp": "1.0.4",
"mocha": "8.1.1",
"ncp": "2.0.0",
"node-fetch": "2.6.1",
"ora": "5.0.0",
"qrcode-terminal": "0.12.0",
"rimraf": "3.0.2",
"tar": "^6.1.11",
"tar-stream": "^2.2.0",
"trace": "3.1.1",
"ts-mocha": "7.0.0"
},
"peerDependencies": {
"eosjs": "^20.0.0",
"eosjs-ecc": "^4.0.4"
}
}