-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.75 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
{
"name": "@sillsdev/scripture",
"version": "2.0.2",
"description": "TypeScript partial port of `libpalaso/SIL.Scripture`",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist",
"!dist/package.json",
"src"
],
"scripts": {
"test": "jest",
"build": "tsc --project tsconfig.build.json && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts && npm run prettier:dts",
"prepare": "npm run build",
"prettier": "prettier --write \"**/*.{ts,js,json,md,yml}\"",
"prettier:dts": "prettier --write \"dist/**/*.d.ts\"",
"prettier:ci": "prettier --list-different \"**/*.{ts,js,json,md,yml}\"",
"test:ci": "jest --config jest.config.js --ci --reporters=jest-junit --coverage",
"lint": "eslint . --max-warnings 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sillsdev/scripture.git"
},
"keywords": [
"typescript",
"linguistics",
"language",
"scripture",
"reference"
],
"author": "SIL Global",
"license": "MIT",
"bugs": {
"url": "https://github.com/sillsdev/scripture/issues"
},
"homepage": "https://github.com/sillsdev/scripture#readme",
"devDependencies": {
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.4.5",
"vite": "^5.4.8"
},
"volta": {
"node": "18.20.3"
}
}