forked from NCDL1-small-group-c/NFT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 857 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
{
"name": "NEAR-non-fungible-token",
"version": "0.0.1",
"description": "Implementation of NEP4 using Rust and AssemblyScript",
"author": "Near, Inc. <[email protected]>",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"build": "yarn build:as && yarn build:rs",
"build:as": "node ./contracts/assemblyscript/compile.js",
"build:rs": "(cd contracts/rust && ./build.sh)",
"clean": "rm -rf ./out && (cd contracts/rust && cargo clean)",
"test": "yarn test:unit:as && yarn test:unit:rs",
"test:unit:as": "asp --verbose --nologo -c contracts/assemblyscript/as-pect.config.js -f unit.spec",
"test:unit:rs": "(cd contracts/rust && cargo test -- --nocapture --color always)"
},
"devDependencies": {
"jest": "^27.0.4",
"near-cli": "^2.0.1",
"near-sdk-as": "^3.2.0"
},
"engines": {
"node": ">=12.0.0"
}
}