-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1022 Bytes
/
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
{
"name": "humanizer.node",
"version": "1.0.5",
"description": "Humanizer meets all your Node needs for manipulating and displaying strings, enums, dates, times, timespans, numbers and quantitie",
"main": "dist/index.js",
"runkitExampleFilename": "runkit.js",
"scripts": {
"build": "rimraf irf dist/* && tsc",
"test": "mocha",
"local": "npm run build && node ./local_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fakoua/humanizer.node.git"
},
"author": {
"name": "Sameh Fakoua",
"email": "s.fakoua@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fakoua/humanizer.node/issues"
},
"homepage": "https://github.com/fakoua/humanizer.node#readme",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.19",
"chai": "^5.1.0",
"cross-env": "^7.0.3",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
}
}