-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
60 lines (60 loc) · 1.91 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
53
54
55
56
57
58
59
60
{
"name": "massalabs-as-monorepo",
"version": "1.2.0",
"description": "A collection of essential classes, helper functions, and transformers for AssemblyScript development",
"type": "module",
"author": "Massa Labs <[email protected]>",
"contributors": [
"Evgeni Pirianov [email protected]",
"Grégory Libert <[email protected]>",
"Benjamin Reynes <[email protected]>",
"Nathan Hervier <[email protected]>",
"Nathan Seva <[email protected]>",
"Pierre Seznec <[email protected]>",
"Tristan Gremont <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/massalabs/as",
"repository": {
"type": "git",
"url": "git+https://github.com/massalabs/as"
},
"scripts": {
"build": "npm run build --ws --if-present",
"test": "asp",
"test:ci": "asp --summary --config as-pect/as-pect-ci.config.js",
"test:proba": "asp --summary --config as-pect/as-pect-proba.config.js",
"test:types": "asp --summary --config as-pect/as-pect-types.config.js",
"prettier": "as-prettier \"packages/**/*.ts\" --check",
"prettier:fix": "as-prettier \"packages/**/*.ts\" --write",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"fmt:check": "npm run prettier && npm run lint",
"fmt": "npm run prettier:fix && npm run lint:fix",
"prepare": "husky install",
"doc": "npm run doc --ws --if-present"
},
"devDependencies": {
"@as-pect/cli": "=8.0.1",
"@massalabs/eslint-config": "^0.0.10",
"@massalabs/massa-as-sdk": "^2.5.1",
"@massalabs/prettier-config-as": "^0.0.2",
"@types/debug": "^4.1.8",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"ts-morph": "^19.0.0",
"typedoc": "^0.24.8"
},
"prettier": "@massalabs/prettier-config-as",
"workspaces": [
"packages/*"
],
"dependencies": {
"as-bignum": "^0.3.0",
"asc": "^2.0.3",
"asp": "^0.0.2",
"debug": "^4.3.4",
"eslint": "^8.49.0",
"npm": "^10.5.2"
}
}