-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.38 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
{
"name": "geomap",
"version": "1.0.0",
"license": "UNLICENSED",
"description": "Geoportal MGRS SVG maps",
"repository": "https://github.com/rzymek/geomap",
"scripts": {
"start": "webpack-dev-server --progress --colors --inline --hot",
"build": "webpack --progress --colors",
"test": "jest",
"cont": "jest --watch --notify"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"@types/lodash": "^4.14.63",
"@types/openlayers": "^4.1.0",
"@types/proj4": "^2.3.4",
"@types/react": "^15.0.21",
"@types/react-dom": "^0.14.23",
"css-loader": "^0.28.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"react-addons-test-utils": "^15.5.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.16.1",
"ts-loader": "^2.0.3",
"typescript": "^2.2.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.3"
},
"dependencies": {
"line-intersect": "^1.0.0",
"lodash": "^4.17.4",
"mgrs": "^1.0.0",
"openlayers": "3.20.1",
"proj4": "^2.4.3",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"jest": {
"modulePaths": [
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/*.spec.(ts|tsx|js)"
]
}
}