This repository has been archived by the owner on May 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.58 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
{
"name": "@fdmg/ts-react-h2",
"version": "1.0.10",
"description": "ReactJS H2 component",
"main": "dist/H2.js",
"types": "dist/H2.d.ts",
"scripts": {
"release": "npm update && npm install && yarn && npm run test && npm run lint && tsc -d",
"test": "jest",
"lint": "tslint -p .",
"updateSnapshot": "jest --updateSnapshot",
"u": "npm test -- -u"
},
"repository": {
"type": "git",
"url": "git@github.com:FDMediagroep/fdmg-ts-react-h2.git"
},
"publishConfig": {
"access": "public"
},
"author": "Willem Liu, Alexander Eerenberg",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.8.8",
"coveralls": "^3.0.1",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.4.0",
"enzyme-to-json": "^3.3.4",
"jest": "^22.4.4",
"jest-cli": "^23.0.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.4",
"ts-jest": "24.0.0",
"tslint": "^5.10.0",
"tslint-react": "^3.6.0",
"typescript": "^2.8.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"setupFiles": [
"raf/polyfill"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"collectCoverage": true,
"coverageDirectory": "dist/coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
]
},
"dependencies": {}
}