-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.51 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
{
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.11",
"chai": "^4.1.2",
"csv-parse": "^4.10.1",
"mocha": "^8.0.1",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.1.0",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
},
"scripts": {
"test:mocha:unit": "mocha --recursive --require ts-node/register 'test/**/*.ts'",
"test:mocha:circleci": "npm run test:mocha:unit -- -R mocha-junit-reporter -O mochaFile='${CIRCLE_TEST_REPORTS}/junit/test-results.xml'",
"test:mocha": "[ ${CIRCLE_TEST_REPORTS} ] && npm run test:mocha:circleci || npm run test:mocha:unit",
"clean:nyc": "rm -rf coverage .nyc_output",
"coverage:nyc": "nyc --all --exclude \"node_modules\" -r html -r lcov -r text --exclude \"**/*.d.ts\" -e \".ts\" -i \"ts-node/register\" --include \"src/**/*.ts\" npm run test:mocha",
"clean:tsc": "rm -rf ./dist",
"build:tsc": "tsc",
"clean": "npm run clean:nyc && npm run clean:tsc",
"build": "npm run build:tsc",
"coverage": "npm run coverage:nyc",
"test": "npm run coverage"
},
"description": "Calculates the german income tax",
"license": "MIT",
"name": "german-income-tax",
"version": "1.0.2",
"engines": {
"node": ">=10"
},
"author": {
"name": "Ivan Drinchev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:drinchev/german-income-tax.git"
}
}