forked from scale-it/algo-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "algorand-builder",
"version": "0.0.1",
"description": "Framework to automate development of Algorand Assets and Smart Contracts.",
"repository": "https://github.com/scale-it/algorand-builder.git",
"contributors": [
{
"name": "Robert Zaremba",
"url": "https://github.com/robert-zaremba"
}, {
"name": "Martynas Maciulevičius",
"url": "https://github.com/Invertisment"
}, {
"name": "Amit Yadav",
"url": "https://github.com/amityadav0"
}
],
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=12.16.0",
"yarn": ">=1.22.4"
},
"scripts": {
"cleanup": "./cleanup.sh",
"build": "yarn workspaces run build",
"watch": "tsc --build --watch packages/*",
"test": "yarn workspaces run test",
"lint": "yarn workspaces -p run lint",
"lint:fix": "yarn workspaces -p run lint:fix",
"coverage": "yarn workspaces -p run coverage"
},
"peerDependencies": {
"lodash": "^4.17.19"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.12",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"lint-staged": {
"**/{src,test}/**/*.{ts,js}": [
"eslint --format stylish --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn workspaces run lint-staged",
"pre-push": "yarn test"
}
}
}