-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
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
{
"name": "@pipeos/taylor",
"version": "0.0.12",
"description": "Lisp-like functional language, interpreted by WebAssembly & the Ethereum Virtual Machine",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "npx webpack",
"build_watch": "webpack --watch",
"build_contract": "node build.js",
"test": "jest tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loredanacirstea/taylor.git"
},
"author": "Loredana Cirstea <loredana.cirstea@gmail.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/loredanacirstea/taylor/issues"
},
"homepage": "https://github.com/loredanacirstea/taylor#readme",
"devDependencies": {
"ganache-cli": "^6.9.1",
"jest": "^24",
"solc": "^0.6.10",
"webpack": "4.42.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"ethers": "^5.0.5"
},
"publishConfig": {
"access": "public"
},
"files": [
"build/*",
"contracts/*",
"dist/*",
"src/*",
"tests/json_tests/*"
]
}