forked from taxee/taxee-tax-statistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "taxee-tax-statistics",
"version": "2020.1.1",
"description": "Federal and state tax brackets and statistics used on https://taxee.io",
"author": "Taxee <[email protected]> (https://taxee.io)",
"private": false,
"keywords": [
"taxee",
"taxes",
"tax",
"federal",
"income tax"
],
"repository": {
"type": "git",
"url": "https://github.com/taxee/taxee-tax-statistics.git"
},
"scripts": {
"build": "webpack --config=./webpack/webpack.config.js",
"format": "prettier --write ./src/**/*.{js,json}",
"lint": "eslint --ext js src"
},
"license": "SEE LICENSE IN LICENSE",
"eslintConfig": {
"extends": "./config/eslint.js"
},
"main": "./dist/index.js",
"dependencies": {
"babel-cli": "^6.14.0",
"prettier": "^1.19.1",
"webpack": "^1.13.2",
"webpack-cli": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-stage-2": "^6.13.0",
"eslint": "^6.8.0",
"json-loader": "^0.5.4"
}
}