-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "compare-utf8",
"version": "0.1.1",
"description": "Compares JS strings using UTF-8 bitwise semantics",
"type": "module",
"main": "src/index.js",
"scripts": {
"build-dts": "rm -f src/*.d.ts && tsc --emitDeclarationOnly && prettier src/*.d.ts --write",
"build": "npm run build-dts",
"format": "prettier *.json src/ --write",
"prepare": "npm run build && npm run format",
"prepack": "npm run prepare",
"test": "mocha src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocicorp/compare-utf8.git"
},
"keywords": [
"UTF-8",
"UTF8",
"compare",
"string"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rocicorp/compare-utf8/issues"
},
"homepage": "https://github.com/rocicorp/compare-utf8#readme",
"devDependencies": {
"mocha": "^10.2.0",
"prettier": "^2.6.2",
"typescript": "^4.7.2"
},
"exports": "./src/index.js",
"files": [
"src/index.js",
"src/index.d.ts"
]
}