-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "navisport-lib",
"version": "1.0.0",
"description": "Navisport lib",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && yarn rollup -c --bundleConfigAsCjs && rm -rf dist/dts && rm -rf dist/src && rm -rf dist/mock",
"test": "jest",
"test:ci": "jest --runInBand --coverage",
"eslint": "eslint . --ext .ts",
"prettier": "prettier --check ./",
"prepare": "husky install"
},
"author": "Jukka-Pekka Seppänen",
"license": "ISC",
"devDependencies": {
"@types/geojson": "^7946.0.10",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"rollup-plugin-dts": "^5.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"geojson": "^0.5.0",
"lodash": "^4.17.21",
"npm-check-updates": "^16.6.0",
"tslib": "^2.4.1",
"uuid": "^9.0.0"
}
}