-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "@dfinity/new-motoko-base",
"version": "2.0.0",
"description": "Motoko base library",
"private": true,
"scripts": {
"postinstall": "mops install",
"format:check": "prettier --check '**/*.mo' --ignore-path .gitignore",
"format": "prettier --write '**/*.mo' --ignore-path .gitignore",
"test": "run-s test:ts test:mops",
"test:ts": "cd test/ts && tsx .",
"test:mops": "mops test",
"validate": "run-s validate:changelog validate:version validate:api",
"validate:changelog": "cd test/ts/validate && tsx changelog",
"validate:version": "cd test/ts/validate && tsx version",
"validate:api": "cd test/ts/validate && tsx api",
"validate:docs": "cd test/ts/validate && tsx docs",
"docs": "$(dfx cache show)/mo-doc",
"bench": "mops bench"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity/new-motoko-base.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dfinity/new-motoko-base/issues"
},
"homepage": "https://github.com/dfinity/new-motoko-base#readme",
"devDependencies": {
"@hadronous/pic": "^0.11.0",
"execa": "^4.1.0",
"fast-glob": "^3.3.2",
"ic-mops": "^1.5.1",
"mo-dev": "^0.13.0",
"motoko": "^3.11.3",
"npm-run-all": "^4.1.5",
"prettier": "2",
"prettier-plugin-motoko": "^0.10.5",
"tsx": "^4.19.3"
}
}