-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "bistring",
"version": "0.5.0",
"description": "Bidirectionally transformed strings",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/bistring.git"
},
"author": "msrmtle@microsoft.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/bistring/issues"
},
"homepage": "https://github.com/microsoft/bistring#readme",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"browser": "dist/index.browser.js",
"files": [
"dist"
],
"scripts": {
"generate": "./scripts/generate_unicode.py",
"prepare": "npm run build",
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"core-js": "^3.32.0",
"jest": "^29.6.2",
"jest-junit": "^16.0.0",
"rollup": "^3.27.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"testRegex": ".*\\.(spec|test)\\.[jt]s$",
"transform": {
".*\\.ts?$": "ts-jest"
}
},
"jest-junit": {
"outputDirectory": "./test-results"
}
}