-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
28 lines (28 loc) · 987 Bytes
/
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
{
"name": "template",
"version": "1.0.0",
"description": "Contract template with near-sdk-js",
"main": "index.js",
"type": "module",
"scripts": {
"build": "near-sdk-js build",
"test": "yarn test:template && yarn test:testnetdeploy",
"test:template": "ava ./__tests__/test-template.ava.js",
"test:testnetdeploy": "ava ./__tests__/test-testnet-dev-deploy.ava.js",
"testci": "yarn testci:template && yarn testci:testnetdeploy",
"testci:template": "ava ./__tests__/test-template.ava.js",
"testci:testnetdeploy": "TESTNET_MASTER_ACCOUNT_ID='templateprojectmaster.testnet' ava ./__tests__/test-testnet-dev-deploy.ava.js",
"test:clidevdeploy": "bash scripts/near_cli_deploy.sh"
},
"author": "Near Inc <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"near-sdk-js": "^1.0.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"ava": "^4.2.0",
"near-workspaces": "^3.3.0",
"near-cli": "^4.0.13"
}
}