-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·66 lines (66 loc) · 2.02 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
{
"name": "number-to-azerbaijani-word",
"version": "3.1.8",
"description": "A package to convert any integer or double to its description in Azerbaijani language",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename number-to-az-word.umd.js --mode development",
"build:umd.min": "webpack --output-filename number-to-az-word.umd.min.js --mode production",
"test": "jest --verbose --coverage",
"test:watch": "jest --watch --verbose",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"lint": "eslint src/*",
"validate": "npm-run-all --parallel lint test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orkhan-huseyn/number-to-azerbaijani-word.git"
},
"keywords": [
"numbers",
"azerbaijan",
"numbers in Azerbaijani",
"number to word",
"number to Azerbaijan word"
],
"author": "orkhan-huseyn",
"license": "MIT",
"bugs": {
"url": "https://github.com/orkhan-huseyn/number-to-azerbaijani-word/issues"
},
"homepage": "https://github.com/orkhan-huseyn/number-to-azerbaijani-word#readme",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"ghooks": "^2.0.4",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"config": {
"ghooks": {
"pre-commit": "npm run validate"
}
}
}