-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "@ask-lang/ask",
"version": "0.4.0",
"description": "compile assemblyscript to substrate wasm contract",
"type": "module",
"keywords": [
"assemblyscript",
"ask",
"wasm",
"smart-contract",
"contract-metadata",
"substrate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ask-lang/ask.git"
},
"workspaces": [
"as-packages/*",
"ts-packages/*"
],
"author": "Ask! Authors <https://github.com/ask-lang>",
"license": "MIT",
"scripts": {
"example": "ASK_CONFIG=./examples/askconfig.json asc --config ./examples/asconfig.json",
"lint": "eslint .",
"fmt": "prettier -w './**/*.ts' --config ./.prettierrc.cjs",
"fmt-check": "prettier -w './**/*.ts' --config ./.prettierrc.cjs --check",
"checks": "yarn workspaces run checks",
"test": "yarn workspaces run test",
"test:as": "asp --verbose",
"test:as:summary": "asp --summary",
"build": "yarn workspace ask-contract-metadata build && yarn workspace ask-transform build",
"prepublishOnly": "yarn build"
},
"private": true,
"devDependencies": {
"@as-pect/cli": "^8.1",
"@types/node": "^20.10",
"@typescript-eslint/eslint-plugin": "^5.60",
"@typescript-eslint/parser": "^5.60",
"assemblyscript": "=0.25",
"eslint": "^8.56",
"prettier": "^3.2",
"ts-node": "^10.9",
"mocha": "^10.3",
"typescript": "~5.3"
},
"publishConfig": {
"access": "public"
}
}