forked from manuelbieh/geolib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.31 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "geolib",
"version": "3.0.4",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"type": "module",
"files": [
"lib",
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/manuelbieh/geolib.git"
},
"author": "Manuel Bieh",
"license": "MIT",
"bugs": {
"url": "https://github.com/manuelbieh/geolib/issues"
},
"homepage": "https://github.com/manuelbieh/geolib#readme",
"scripts": {
"babel": "babel",
"build": "yarn clean && yarn build:es && yarn build:types && yarn build:umd",
"build:es": "babel --minified --ignore **/*.test.js,**/*.test.ts --out-dir es --extensions .ts,.js --no-comments src",
"build:types": "tsc --outDir es --emitDeclarationOnly --noEmit false --declaration",
"build:umd": "webpack-cli --config webpack.config.js",
"clean": "rimraf lib es",
"lint": "eslint src/**/*.{js,ts}",
"release": "semantic-release",
"postrelease": "git pull origin master && git push origin master --follow-tags",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.7",
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-wiremore": "^3.0.2",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^8.0.2",
"husky": "^2.2.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.6",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.12",
"semantic-release-conventional-commits": "^2.0.1",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2"
}
}