-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 1.25 KB
/
package.json
File metadata and controls
38 lines (37 loc) · 1.25 KB
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
{
"name": "archetype-fa2",
"version": "1.0.0",
"description": "",
"directories": {
"tests": "tests"
},
"scripts": {
"test": "ts-mocha --timeout 0 --slow 99999999999999999 ./tests/*.ts",
"test-fungible": "ts-mocha --timeout 0 --slow 99999999999999999 ./tests/00-fa2-fungible.ts",
"test-nft": "ts-mocha --timeout 0 --slow 99999999999999999 ./tests/01-fa2-nft.ts",
"test-multi": "ts-mocha --timeout 0 --slow 99999999999999999 ./tests/02-fa2-multi.ts",
"gen-binding": "completium-cli generate binding-ts _ --input-path ./contracts/ --output-path ./tests/binding/",
"completium_init": "completium-cli init",
"mockup_init": "completium-cli mockup init"
},
"dependencies": {
"@completium/archetype-ts-types": "^0.1.10",
"@completium/completium-cli": "^1.0.3",
"@completium/experiment-ts": "^1.0.0"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.7.4"
},
"completium": {
"binding_path": "./tests/binding/",
"build_path": "./build/",
"contracts_path": "./contracts/",
"tests_path": "./tests/"
}
}