-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 1.86 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
67
68
69
70
71
72
73
74
{
"name": "nkyimu",
"version": "1.4.14",
"description": "A library written in TypeScript that allows creating self validating AkomaNtoso documents",
"author": "Libryo Ltd",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "GPL-3.0-only",
"keywords": [],
"scripts": {
"test": "jest",
"check": "gts check",
"clean": "node src/init clean && gts clean",
"compile": "node src/init && tsc -p . && npm run generate-maps",
"generate-maps": "node src/init elements && tsc -p .",
"watch": "tsc -w",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^11.13.18",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"awesome-typescript-loader": "^5.2.0",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"gts": "^0.9.0",
"jest": "^23.4.1",
"jsdom": "^13.2.0",
"source-map-loader": "^0.2.3",
"ts-jest": "^23.0.1",
"typescript": "^3.5.3",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"xmlserializer": "^0.6.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/**/*.(ts|tsx|js)?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverage": false
},
"dependencies": {
"country-data": "^0.0.31",
"lodash": "^4.17.13"
}
}