-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "google-cityhash",
"version": "1.0.0",
"description": "Pure JavaScript implement for CityHash. (No C++ binding)",
"main": "index.js",
"scripts": {
"test": "mocha test",
"lint": "eslint .",
"d-ts-lint": "tsc index.d.ts",
"coverage": "nyc mocha -b -R spec",
"ci": "npm run lint && npm run d-ts-lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoogeeDoo/node-cityhash.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"cityhash",
"city hash",
"google city hash",
"google cityhash",
"hashing"
],
"author": "XadillaX <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BoogeeDoo/node-cityhash/issues"
},
"homepage": "https://github.com/BoogeeDoo/node-cityhash#readme",
"dependencies": {
"bling-hashes-js": "^1.0.3"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-egg": "^9.0.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"typescript": "^4.0.5"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
}
}