-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "bling-hashes-js",
"version": "1.0.3",
"description": "Pure JavaScript dist for Bling hashes.",
"main": "index.js",
"scripts": {
"test": "mocha test",
"coverage": "istanbul cover mocha --report lcovonly -- -R spec",
"lint": "eslint .",
"d-ts-lint": "tsc **/*.d.ts",
"build": "make dist/export.js",
"ci": "npm run build && npm run d-ts-lint && npm run lint && npm run coverage"
},
"files": [
"dist/export.js",
"lib",
"index.js",
"**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+/~https://github.com/XadillaX/bling_hashes_js.git"
},
"keywords": [
"cityhash",
"city hash",
"hash",
"string hash",
"elfen hash",
"bkdr hash"
],
"author": "XadillaX <i@2333.moe>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/XadillaX/bling_hashes_js/issues"
},
"homepage": "/~https://github.com/XadillaX/bling_hashes_js",
"dependencies": {
"@types/node": "^14.14.8",
"big-number": "^2.0.0",
"long": "^4.0.0"
},
"devDependencies": {
"coveralls": "^2.13.3",
"eslint": "^7.13.0",
"eslint-config-egg": "^9.0.0",
"istanbul": "^0.3.22",
"mocha": "^8.2.1",
"typescript": "^4.0.5"
}
}