-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "@dfinity/new-motoko-base",
"version": "2.0.0",
"description": "Motoko base library",
"private": true,
"scripts": {
"postinstall": "mops install",
"format:check": "npx -p prettier -p pretty-quick pretty-quick --check",
"format": "npx -p prettier -p pretty-quick pretty-quick",
"test": "run-s test:ts test:mops",
"test:ts": "cd test/ts && tsx .",
"test:mops": "mops test --reporter files",
"validate": "cd test/ts && tsx validate",
"docs": "$(dfx cache show)/mo-doc"
},
"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": {
"execa": "^4.1.0",
"fast-glob": "^3.3.2",
"ic-mops": "^1.1.1",
"mo-dev": "^0.13.0",
"npm-run-all": "^4.1.5",
"prettier": "2",
"prettier-plugin-motoko": "^0.10.3",
"pretty-quick": "3",
"tsx": "^4.19.2"
}
}