-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "testdata-generator",
"version": "0.1.0",
"description": "Create synthetic OSM data for testing",
"main": "./src/generate.js",
"dependencies": {
"typescript": "^2.8.3"
},
"devDependencies": {
"@types/node": "^8.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-typescript": "^0.11.0",
"ts-node": "^6.0.0",
"tslint": "^5.9.1",
"typescript-eslint-parser": "^15.0.0"
},
"scripts": {
"clean": "rm -rf build; rm -rf node_modules",
"lint": "tslint -c tslint.json './src/**/*.ts'",
"create-test-data": "tsc -p ./ && node build/generate.js"
},
"repository": {
"type": "git",
"url": "https://tagdynamics-org/testdata-generator.git"
},
"keywords": [
"openstreetmap", "gdpr", "test data"
],
"author": "Matias Dahl",
"license": "MIT",
"bugs": {
"url": "https://github.com/tagdynamics-org/testdata-generator/issues"
},
"homepage": "https://github.com/tagdynamics-org/testdata-generator"
}