This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.95 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
80
81
{
"name": "@kimmel/toolbelt",
"version": "0.1.0",
"description": "Utility functions for Kimmel projects",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"repository": "https://github.com/kimmelsg/toolbelt",
"author": "Ryan Castner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimmelsg/toolbelt/issues"
},
"keywords": [
"typescript",
"utility",
"functions"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c && tsc",
"dev": "rollup -c -w",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --collectCoverage",
"test:cov": "jest --watchAll --collectCoverage --coverageReporters=html"
},
"files": [
"dist"
],
"prettier": {
"semi": true,
"trailingComma": "all",
"printWidth": 80,
"singleQuote": true
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/index.ts",
"!src/types/",
"!<rootDir>/node_modules/"
],
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFiles": [
"<rootDir>/setupTests.ts"
]
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"eslint": "5.x",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"prettier": "^1.18.2",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.22.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
}
}