forked from RAMP-PCAR/geosearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "rz-geosearch",
"version": "2.0.4",
"description": "Configurable geolocation search library",
"main": "src/geosearch.js",
"repository": "[email protected]:RAMP-PCAR/geosearch.git",
"author": "Miles Petrov",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "2.8.8",
"@types/jest": "23.1.2",
"docute-cli": "0.6.0",
"dts-webpack-plugin": "0.0.9",
"jasmine": "3.1.0",
"jasmine-ts": "0.2.1",
"jest": "23.2.0",
"node-fetch": "2.1.2",
"nodemon": "1.17.5",
"ts-jest": "22.4.6",
"ts-loader": "4.4.1",
"tslint": "5.10.0",
"tslint-loader": "3.6.0",
"typescript": "2.9.2",
"webpack": "4.12.2",
"webpack-cli": "3.0.8"
},
"scripts": {
"build": "webpack",
"test": "jest",
"docute": "docute",
"fetchdata": "node scripts/typeCompiler.js && node scripts/provinceCompiler.js"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}