-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.18 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@jsany/jsh",
"version": "1.0.4",
"description": "javascript string non-cryptographic hash library",
"keywords": [
"javascript",
"non-cryptographic-hash-functions",
"hash",
"string",
"APHash",
"BKDRHash",
"DEKHash",
"DJBHash",
"ELFHash",
"JSHash",
"PJWHash",
"SDBMHash"
],
"homepage": "https://github.com/daolou/jsh#readme",
"bugs": {
"url": "https://github.com/daolou/jsh/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daolou/jsh.git"
},
"license": "ISC",
"author": "daolou <[email protected]>",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"browser": "lib/index.umd.js",
"types": "lib/index.es.d.ts",
"files": [
"lib"
],
"scripts": {
"check:ts": "tsc --noEmit --pretty",
"compile": "rimraf lib && rollup -c rollup.config.js",
"lint": "xo --fix src/**/*.{js,ts}",
"np": "./scripts/publish.sh",
"prepare": "husky install",
"release": "standard-version"
},
"lint-staged": {
"package.json": [
"sort-package-json"
],
"src/**/*.{js,ts}": [
"xo --fix"
]
},
"xo": {
"rules": {
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/no-require-imports": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-unsafe-call": 0,
"import/no-anonymous-default-export": 0,
"unicorn/no-abusive-eslint-disable": 0,
"unicorn/prefer-module": 0,
"no-bitwise": 0,
"import/extensions": 0
},
"space": true
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^17.0.35",
"devmoji": "^2.3.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"rimraf": "^3.0.2",
"rollup": "^2.74.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^2.0.7",
"sort-package-json": "^1.57.0",
"standard-version": "^9.5.0",
"typescript": "^4.7.2",
"xo": "^0.49.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}