forked from piotr-oles/as-proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "as-proto-workspace",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"author": "Piotr Oleś <[email protected]>",
"repository": "https://github.com/piotr-oles/as-proto.git",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"release": "auto shipit",
"test:prepare": "node tests/prepare.js",
"test:run": "ava",
"test": "yarn test:prepare && yarn test:run",
"bench:prepare": "node bench/prepare.js",
"bench:run": "node bench/index.cjs",
"bench": "yarn bench:prepare && yarn bench:run"
},
"devDependencies": {
"@assemblyscript/loader": "^0.24.1",
"@auto-it/conventional-commits": "^10.32.5",
"@auto-it/first-time-contributor": "^10.32.5",
"assemblyscript": "^0.24.1",
"auto": "^10.32.5",
"ava": "^4.3.0",
"benchmark": "^2.1.4",
"chalk": "^4.0.0",
"fs-extra": "^10.1.0",
"lerna": "^5.1.6",
"prettier": "^2.5.0",
"protobufjs": "^6.11.2",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
},
"auto": {
"plugins": [
"npm",
"conventional-commits",
"first-time-contributor",
"released"
]
},
"ava": {
"files": [
"tests/**/*.spec.js"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}