-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.22 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
{
"name": "as-template",
"version": "0.0.1",
"description": "assemblyscript smart contracts template",
"author": "learnforpractice <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uuosio/as-template.git"
},
"bugs": {
"url": "https://github.com/uuosio/as-template/issues"
},
"keywords": [
"wasm",
"webassembly",
"assemblyscript"
],
"scripts": {
"test": "jest --no-cache",
"pytest": "ipyeos -m pytest -s -x test.py -k test_hello",
"build": "npx asm-contract build ./assembly/counter.ts --target release"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"asm-chain": "^0.1.2",
"asm-contract": "^0.3.2",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"chaintester": "^0.1.4",
"jest": "^28.1.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"files": [
"assembly/",
"build/",
"README.md",
"LICENSE",
"package.json",
"yarn.lock"
]
}