-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.09 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
59
60
61
62
{
"name": "@openaip/openair-fix-format",
"version": "1.1.2",
"description": "OpenAIR format fixer. Parses openAIR formatted string, removes unnecessary blank lines and makes sure that geometry start and end points are equal.",
"keywords": [
"openaip",
"openair",
"format",
"fixer"
],
"authors": [
{
"name": "Stephan Besser",
"email": "stephan@openaip.net",
"homepage": "https://www.openaip.net",
"role": "Lead developer"
}
],
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openAIP/openaip-openair-fix-format.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bugs": {
"url": "https://github.com/openAIP/openaip-openair-fix-format/issues"
},
"homepage": "https://github.com/openAIP/openaip-openair-fix-format#readme",
"scripts": {
"test": "TZ='UTC' NODE_ENV=test jest --forceExit -c jest.config.js tests/**",
"test-watch": "TZ='UTC' NODE_ENV=test jest --forceExit -c jest.config.js tests/** --watch",
"lint": "eslint -c .eslintrc.js .",
"run-security-audit": "npm audit --omit=dev",
"bump-version": "bump -c 'version bump to ' -tp",
"update-packages": "ncu --target minor --upgrade --reject jsts && npm install"
},
"dependencies": {
"check-types": "^11.2.2",
"n-readlines": "^1.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@types/check-types": "^7.3.4",
"@types/jest": "^27.5.2",
"@types/uuid": "^8.3.4",
"commander": "^2.20.3",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.5.1",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.6.3",
"prettier": "^2.8.3",
"version-bump-prompt": "^6.1.0"
}
}