forked from connor4312/chromehash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 945 Bytes
/
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
{
"name": "@c4312/chromehash",
"version": "0.3.0",
"description": "A Rust/WebAssembly implementation of the Chrome content hashing algorithm",
"main": "index.js",
"scripts": {
"prepack": "rm -rf pkg && wasm-pack build --target nodejs --release && rm pkg/.gitignore && tsc",
"watch": "tsc -w",
"test": "mocha --timeout 20000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connor4312/chromehash.git"
},
"author": "Connor Peet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/connor4312/chromehash/issues"
},
"homepage": "https://github.com/connor4312/chromehash#readme",
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.34",
"mocha": "^9.2.2",
"prettier": "^1.19.1",
"typescript": "^4.6.4"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2
}
}