forked from fabriciomendonca/business-rules-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.98 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
75
76
77
78
79
{
"name": "business-rules-package",
"version": "1.0.1",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"@types/jest": "^24.0.3",
"@types/jest-diff": "^20.0.0",
"jest": "^23.6.0",
"nodemon": "^1.18.10",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"ts-lint": "^4.5.1",
"tslint": "^5.12.1",
"tslint-consistent-codestyle": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"tsutils": "^2.29.0",
"typescript": "^3.2.4",
"vrsource-tslint-rules": "^6.0.0"
},
"scripts": {
"build": "rimraf dist && tsc",
"clean-coverage": "rimraf coverage",
"dev": "tsc",
"start": "nodemon --watch ./src/ -e ts --exec \"npm run dev\"",
"pretest": "tslint --project ./tsconfig.json --config ./tslint.json",
"test": "npm run clean-coverage && jest --coverage",
"test-dev": "jest --watch",
"test-dev-coverage": "rimraf coverage && jest --watchAll --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabriciomendonca/business-rules-package.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fabriciomendonca/business-rules-package/issues"
},
"homepage": "https://github.com/fabriciomendonca/business-rules-package#readme",
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/showroom/",
"/dist/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 60,
"statements": 60
}
}
},
"nodemonConfig": {
"ignore": [
"dist/*",
"node_modules/*",
"showroom/*"
]
}
}