-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.69 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.69 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "mind_mapper_react",
"version": "1.0.0",
"description": "History Mind Mapper (HMM): A cool utility which lets you explore the connections of your web searches.",
"main": "index.js",
"scripts": {
"webpack": "webpack --progress --mode=production",
"watch": "webpack --watch --progress --mode=development",
"test": "jest --coverage && npm run lint",
"test-unit": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "tslint 'src/**/*.{tsx,ts}'",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"jest": {
"setupFiles": [
"./test/jestsetup.ts"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"verbose": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js",
".*": "<rootDir>/node_modules/jest-css-modules"
},
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
},
"transformIgnorePatterns": [
"/node_modules/(?!lodash-es)"
],
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js",
"src/**/*.jsx",
"src/**/*.ts",
"src/**/*.tsx",
"!**/*.d.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"coverageThreshold": {
"global": {
"statements": 60,
"branches": 53,
"lines": 63,
"functions": 65
}
}
},
"pre-commit": "test",
"author": "Omri Lavi",
"license": "ISC",
"dependencies": {
"@types/enzyme": "^3.1.15",
"@types/lodash": "^4.14.120",
"@types/react": "^16.7.21",
"@types/react-dom": "^16.0.11",
"circlepacker": "^1.1.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"stopword": "^0.1.13"
},
"devDependencies": {
"@storybook/react": "^4.1.11",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.13",
"@types/storybook__react": "^4.0.0",
"ajv": "^6.0.0",
"awesome-typescript-loader": "^5.0.0",
"css-loader": "^0.28.7",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"enzyme-to-json": "^3.3.5",
"jest": "^24.0.0",
"jest-css-modules": "^1.1.0",
"node-sass": "^4.5.3",
"pre-commit": "^1.2.2",
"react-test-renderer": "^16.7.0",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-react": "^3.6.0",
"typescript": "^3.2.4",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"worker-loader": "^1.1.1"
}
}