forked from uuosio/ascdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.58 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
{
"name": "ascdk",
"version": "0.1.0",
"description": "compile assemblyscript to eosio wasm contract",
"keywords": [
"assemblyscript",
"eosio",
"asc",
"wasm",
"smart-contract"
],
"workspaces": [
"as-packages/chain",
"as-packages/chain/tests",
"ts-packages/*",
"examples"
],
"license": "MIT",
"scripts": {
"lint": "eslint .",
"prettify": "prettier -w ./**/*.ts --config ./.prettierrc.js",
"checks": "yarn checks:transform",
"checks:transform": "yarn --cwd ./ts-packages/transform checks",
"test:codegen": "yarn --cwd ./ts-packages/tests test",
"test:chain": "yarn --cwd ./as-packages/chain/tests && yarn --cwd ./as-packages/chain/tests test-all",
"test:examples": "yarn --cwd ./examples test-all",
"test:chaintester": "yarn --cwd ./ts-packages/chaintester && yarn --cwd ./ts-packages/chaintester build && yarn --cwd ./ts-packages/chaintester test",
"build:eosio-asc": "yarn --cwd ./ts-packages/transform && yarn --cwd ./ts-packages/transform build",
"test": "yarn build:eosio-asc && yarn test:chaintester && yarn test:chain && yarn test:examples && yarn test:codegen"
},
"private": true,
"devDependencies": {
"@assemblyscript/loader": "^0.18",
"@types/jest": "26.0.21",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.16",
"@typescript-eslint/parser": "^4.16",
"assemblyscript": "0.22.0",
"eslint": "^7.21.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"ts-node": "^9.1.1",
"typescript": "4.0"
}
}