-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "numerical-fns",
"version": "0.4.0",
"description": "Collection of formatters to transform numbers",
"main": "lib/cjs/index.js",
"module": "lib/index.js",
"repository": "[email protected]:pedroabreu/numerical-fns.git",
"author": "Pedro Abreu <[email protected]>",
"keywords": [
"numeral",
"numerical",
"format",
"currency",
"internationalization",
"i18n",
"localization",
"locale"
],
"license": "MIT",
"scripts": {
"prepublishOnly": "run-s test bundle",
"lint": "eslint src/*",
"bundle": "rollup -c",
"test": "jest"
},
"husky": {
"hooks": {
"precommit": "run-p test lint"
}
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"rollup": "^1.7.4",
"rollup-plugin-node-resolve": "^4.0.1"
}
}