-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.67 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
{
"name": "bahttext",
"version": "0.0.0-development",
"description": "Change number to Thai pronunciation string",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"jest": "jest",
"jest.watch": "jest --watch",
"coverage.check": "jest --coverage",
"build": "tsc",
"semantic-release": "semantic-release",
"standard": "standard",
"standard.fix": "standard --fix",
"test": "jest",
"test.watch": "jest --watch",
"validate": "npm run standard && npm run coverage.check && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/jojoee/bahttext.git"
},
"keywords": [
"thai",
"baht",
"text",
"number",
"convert",
"thai baht"
],
"author": "Nathachai Thongniran <inid3a@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jojoee/bahttext/issues"
},
"homepage": "https://github.com/jojoee/bahttext#readme",
"devDependencies": {
"@stryker-mutator/core": "^8.5.0",
"@stryker-mutator/jest-runner": "^8.5.0",
"@to-da-moon/thai-baht-lib": "^0.0.12",
"baht": "^0.7.1",
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3",
"semantic-release": "^24.1.1",
"standard": "^17.1.2",
"thai-baht-text": "^2.0.5",
"thai-baht-text-ts": "^1.1.0",
"typescript": "*"
},
"jest": {
"setupFilesAfterEnv": [
"jest-expect-message"
],
"verbose": true,
"testMatch": [
"**/*.test.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"standard": {
"verbose": true,
"env": "jest"
}
}