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 1
/
package.json
69 lines (69 loc) · 1.69 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
{
"name": "@fdmg/ts-react-linked-image",
"version": "1.0.12",
"description": "ReactJS LinkedImage component",
"main": "dist/LinkedImage.js",
"types": "dist/LinkedImage.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": "[email protected]:FDMediagroep/fdmg-ts-react-linked-image.git"
},
"publishConfig": {
"access": "public"
},
"author": "Willem Liu, Alexander Eerenberg",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/react": "^16.8.8",
"coveralls": "^3.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.4.0",
"enzyme-to-json": "^3.3.3",
"jest": "^22.0.1",
"raf": "^3.4.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-test-renderer": "^16.8.5",
"ts-jest": "24.0.0",
"tslint": "^5.9.1",
"tslint-react": "^3.5.1",
"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"
],
"mapCoverage": true
},
"dependencies": {
"@fdmg/ts-react-anchor": "^1.0.7",
"@fdmg/ts-react-image": "^1.0.6"
}
}