-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.03 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
{
"name": "numbers-from-words",
"version": "0.0.8",
"description": "A utility library for parsing numbers from words.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/f3rno64/numbers-from-words",
"author": "Cris Mihalache <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/f3rno64/numbers-from-words",
"bugs": {
"url": "https://github.com/f3rno64/numbers-from-words/issues"
},
"keywords": [
"words to numbers",
"word",
"number",
"parser"
],
"scripts": {
"docs": "npx typedoc --out docs src && cp LICENSE.md docs/LICENSE.md && cp CHANGELOG.md docs/CHANGELOG.md",
"test": "NODE_PATH=./src NODE_ENV=test mocha --bail",
"test:coverage": "NODE_PATH=./src NODE_ENV=test nyc mocha",
"test:watch": "NODE_PATH=./src NODE_ENV=test nyc mocha --watch --bail",
"build": "NODE_PATH=./src tsc -p tsconfig.json",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\"",
"update-deps": "updates -u -g -c",
"update-version": "standard-version -a",
"prepare": "husky install",
"prepare-release": "npm run lint && npm run test && npm run build && npm run docs && git add docs",
"prepublish": "npm run build",
"release": "npm run prepare-release && npm run update-version && git push --follow-tags origin main"
},
"devDependencies": {
"@eslint/js": "^8.54.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.11",
"@types/chai-almost": "^1.0.3",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.13.1",
"chai": "^4.3.10",
"chai-almost": "^1.0.1",
"eslint": "^8.54.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.2",
"updates": "^15.0.4"
},
"dependencies": {
"tslib": "^2.6.2"
}
}