forked from near/near-sdk-as
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.05 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "near-sdk-as",
"version": "1.1.0",
"description": "Collection of packages for developming NEAR smart contracts",
"main": "index.js",
"types": "assembly/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com:near/near-sdk-as",
"directory": "packages/sdk"
},
"author": "Willem Wyndham <[email protected]>",
"license": "(MIT AND Apache-2.0)",
"dependencies": {
"@as-pect/cli": "^4.0.0",
"as-bignum": "^0.2.0",
"asbuild": "^0.0.6",
"assemblyscript": "^0.14.7",
"assemblyscript-json": "^0.3.2",
"bn.js": "^5.1.1",
"bs58": "^4.0.1",
"js-base64": "^3.4.3",
"near-mock-vm": "^0.1.1",
"near-vm": "^1.1.0",
"visitor-as": "^0.2.0"
},
"scripts": {
"build": "yarn build:bindgen && yarn build:runtime",
"pretest": "yarn build",
"build:bindgen": "(cd bindgen; yarn build)",
"build:runtime": "(cd runtime; tsc)",
"test": "yarn test:bindgen && yarn asp:ci && yarn test:nearcore && yarn test:runtime && yarn check:pretty",
"test:nearcore": "(cd nearcore-tests; yarn test)",
"test:bindgen": "(cd bindgen; yarn test)",
"test:runtime": "(cd runtime; yarn build) && jest",
"asp:ci": "asp",
"asp": "yarn asp:ci --verbose",
"doc": "rm -rf docs; typedoc assembly --tsconfig assembly/tsconfig.json && touch docs/.nojekyll",
"prepublish": "yarn build",
"prettify": "prettier --write '**/*.ts'",
"check:pretty": "yarn prettier --check '**/*.ts'"
},
"devDependencies": {
"@assemblyscript/loader": "^0.14.7",
"@types/bn.js": "^4.11.6",
"@types/bs58": "^4.0.1",
"@types/jest": "^26.0.0",
"@types/js-base64": "^3.0.0",
"@types/node": "^14.0.9",
"assert-no-diff": "^3.0.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"near-hello": "^0.5.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"ts-node": "^8.6.2",
"typedoc": "^0.17.3",
"typescript": "^3.6.4"
},
"engines": {
"node": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn check:pretty || (yarn prettify && exit 1)"
}
}
}