-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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": "worldcities-main",
"version": "0.1.0",
"description": "Root repository for worldcities, for pulling source data, parsing, and preparing the npm package.",
"scripts": {
"build": "npm run copy:assets && ./node_modules/.bin/tsc",
"copy:assets": "cpx 'src/data/**' 'dist/data'",
"docs": "jsdoc --configure jsdocs.json --destination ./docs/jsdocs",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"test": "jest && coveralls < ./docs/coverage/lcov.info",
"test:watch": "jest --watchAll",
"watch:ts": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenDataFormats/worldcities.git"
},
"author": {
"name": "David Arvan",
"email": "[email protected]"
},
"license": "Unlicense",
"bugs": {
"url": "https://github.com/OpenDataFormats/worldcities/issues"
},
"homepage": "https://github.com/OpenDataFormats/worldcities",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.15",
"coveralls": "^3.1.0",
"cpx": "^1.5.0",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"lodash": ">=4.17.21",
"sqlite3": "^5.0.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.2",
"typescript": "^4.0.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"verbose": true,
"collectCoverage": true,
"coverageDirectory": "./docs/coverage",
"coveragePathIgnorePatterns": [
"/dist/node_modules/"
]
}
}