forked from FDMediagroep/fdmg-ts-react-h2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "fdmg-ts-react-h2",
"version": "1.0.0",
"description": "ReactJS H2 component",
"main": "dist/H2.js",
"types": "dist/H2.d.ts",
"scripts": {
"release": "tsc -d",
"test": "jest",
"updateSnapshot": "jest --updateSnapshot",
"u": "npm test -- -u"
},
"repository": {
"type": "git",
"url": "git@github.com:FDMediagroep/fdmg-ts-react-h2.git"
},
"author": "Willem Liu, Alexander Eerenberg",
"license": "ISC",
"devDependencies": {
"@types/jest": "^21.1.5",
"@types/react": "^16.0.23",
"coveralls": "^3.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"jest": "^21.2.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-test-renderer": "^16.1.1",
"ts-jest": "^21.2.1",
"typescript": "^2.5.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"collectCoverage": true,
"coverageDirectory": "dist/coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
],
"mapCoverage": true
},
"dependencies": {}
}