-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 1.03 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": "blake3",
"workspaces": [
"blake3",
"blake3-internal",
"blake3-native",
"blake3-wasm"
],
"scripts": {
"preinstall": "cp -R ",
"pack-all": "make clean && make all && make test && make pack",
"test": "make test",
"fmt": "make fmt",
"compile": "make all",
"watch": "tsc --watch"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.20",
"@types/node-fetch": "^2.6.2",
"@types/serve-handler": "^6.1.1",
"@types/stream-buffers": "^3.0.4",
"@types/webpack": "^5.28.0",
"benny": "^3.7.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"playwright": "^1.26.0",
"prettier": "^2.7.1",
"remark-cli": "^11.0.0",
"remark-toc": "^8.0.1",
"rimraf": "^3.0.2",
"serve-handler": "^6.1.3",
"source-map-support": "^0.5.21",
"stream-buffers": "^3.0.2",
"typescript": "^4.8.3",
"webpack": "^5.74.0"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
}
}