-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "elm-eos",
"version": "1.0.2",
"description": "Type-safe interaction with the EOSIO blockchain in Elm.",
"scripts": {
"test": "elm-verify-examples && elm-test-rs && cd codegen && elm-test-rs",
"generate-helpers": "rm -rf codegen/src/Gen && elm-codegen install && mv codegen/Gen codegen/src/Gen",
"postinstall": "elm-tooling install && cd codegen && npm ci",
"build": "npm run generate-helpers && cd codegen && npm run build",
"preview:docs": "elm-doc-preview"
},
"keywords": [
"elm",
"eos"
],
"repository": {
"type": "git",
"url": "git+https://github.com/henriquecbuss/elm-eos.git"
},
"author": "Henrique da Cunha Buss",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/henriquecbuss/elm-eos/issues"
},
"homepage": "https://github.com/henriquecbuss/elm-eos#readme",
"devDependencies": {
"elm-doc-preview": "^5.0.5",
"elm-review": "^2.7.3",
"elm-tooling": "^1.8.0",
"elm-verify-examples": "^5.2.0"
},
"dependencies": {
"elm-codegen": "^0.2.0"
}
}