-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.33 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": "format-thousands",
"version": "2.0.0",
"description": "Format thousands with custom separator: 1 000 000",
"license": "MIT",
"repository": "VovanR/format-thousands",
"homepage": "https://github.com/VovanR/format-thousands#readme",
"bugs": "https://github.com/VovanR/format-thousands/issues",
"author": "Vladimir Rodkin <[email protected]> (https://github.com/VovanR)",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"main": "index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && nyc ava",
"tdd": "ava -w",
"release-patch": "mversion patch",
"release-minor": "mversion minor",
"release-major": "mversion major",
"deploy": "gh-pages -d example"
},
"files": [
"index.js"
],
"keywords": [
"format",
"separate",
"thousands",
"number"
],
"dependencies": {},
"devDependencies": {
"ava": "^0.25.0",
"conventional-changelog-cli": "^1.3.16",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"mversion": "^1.10.1",
"nyc": "^11.4.1",
"xo": "^0.20.3"
},
"xo": {
"esnext": false,
"space": true
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}