forked from jcnelson/poxl
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 3.6 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
{
"name": "citycoin",
"version": "2.0.0",
"description": "CityCoins give communities the power to improve and program their cities.",
"scripts": {
"console": "clarinet console",
"test": "npm run test:cities && npm run test:base && npm run test:misc",
"test:cities": "npm run test:mia && npm run test:nyc",
"test:mia": "npm run test:mia:auth && npm run test:mia:core && npm run test:mia:token && npm run test:mia:upgrade",
"test:mia:all:v1": "npm run test:mia:auth:v1 && npm run test:mia:core:v1 && npm run test:mia:core:v1:patch && npm run test:mia:token:v1",
"test:mia:all:v2": "npm run test:mia:auth:v2 && npm run test:mia:core:v2 && npm run test:mia:token:v2 && npm run test:mia:upgrade",
"test:mia:auth": "npm run test:mia:auth:v1 && npm run test:mia:auth:v2",
"test:mia:auth:v1": "clarinet test ./tests/cities/mia/auth/auth-v1",
"test:mia:auth:v2": "clarinet test ./tests/cities/mia/auth/auth-v2",
"test:mia:core": "npm run test:mia:core:v1 && npm run test:mia:core:v1:patch && npm run test:mia:core:v2",
"test:mia:core:v1": "clarinet test ./tests/cities/mia/core/core-v1",
"test:mia:core:v1:patch": "clarinet test ./tests/cities/mia/core/core-v1-patch",
"test:mia:core:v2": "clarinet test ./tests/cities/mia/core/core-v2",
"test:mia:token": "npm run test:mia:token:v1 && npm run test:mia:token:v2",
"test:mia:token:v1": "clarinet test ./tests/cities/mia/token/token-v1",
"test:mia:token:v2": "clarinet test ./tests/cities/mia/token/token-v2",
"test:mia:upgrade": "clarinet test ./tests/cities/mia/upgrade",
"test:nyc": "npm run test:nyc:auth && npm run test:nyc:core && npm run test:nyc:token && npm run test:nyc:upgrade",
"test:nyc:all:v1": "npm run test:nyc:auth:v1 && npm run test:nyc:core:v1 && npm run test:nyc:core:v1:patch && npm run test:nyc:token:v1",
"test:nyc:all:v2": "npm run test:nyc:auth:v2 && npm run test:nyc:core:v2 && npm run test:nyc:token:v2 && npm run test:nyc:upgrade",
"test:nyc:auth": "npm run test:nyc:auth:v1 && npm run test:nyc:auth:v2",
"test:nyc:auth:v1": "clarinet test ./tests/cities/nyc/auth/auth-v1",
"test:nyc:auth:v2": "clarinet test ./tests/cities/nyc/auth/auth-v2",
"test:nyc:core": "npm run test:nyc:core:v1 && npm run test:nyc:core:v1:patch && npm run test:nyc:core:v2",
"test:nyc:core:v1": "clarinet test ./tests/cities/nyc/core/core-v1",
"test:nyc:core:v1:patch": "clarinet test ./tests/cities/nyc/core/core-v1-patch",
"test:nyc:core:v2": "clarinet test ./tests/cities/nyc/core/core-v2",
"test:nyc:token": "npm run test:nyc:token:v1 && npm run test:nyc:token:v2",
"test:nyc:token:v1": "clarinet test ./tests/cities/nyc/token/token-v1",
"test:nyc:token:v2": "clarinet test ./tests/cities/nyc/token/token-v2",
"test:nyc:upgrade": "clarinet test ./tests/cities/nyc/upgrade",
"test:base": "npm run test:base:auth && npm run test:base:core && npm run test:base:token",
"test:base:auth": "clarinet test ./tests/base/auth",
"test:base:core": "clarinet test ./tests/base/core",
"test:base:token": "clarinet test ./tests/base/token",
"test:misc": "npm run test:misc:tardis && npm run test:misc:utils && npm run test:misc:vote && npm run test:misc:vrf",
"test:misc:tardis": "clarinet test ./tests/tardis/",
"test:misc:utils": "clarinet test ./tests/utilities/",
"test:misc:vote": "clarinet test ./tests/vote/",
"test:misc:vrf": "clarinet test ./tests/vrf/",
"clarinet:check": "clarinet check",
"clarinet:codecov": "clarinet test --coverage",
"clarinet:console": "clarinet console",
"clarinet:costs": "clarinet test --costs",
"clarinet:test": "clarinet test"
}
}