-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.72 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
{
"name": "random-location",
"version": "0.0.0-development",
"description": "Random coordinates within a circle (or on a circumference) given a center point and radius.",
"author": "Sagi Kedmi (https://sagi.io) <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prebuild": "rimraf dist",
"lint": "eslint ./src",
"build": "npm-run-all --parallel build:*",
"build:babel": "babel --ignore '**/*.test.js' src -d dist --verbose",
"build:webpack": "webpack --display-modules ./src -o dist/randomLocation.umd.js",
"prettier:ci": "prettier --check \"src/**/*.js\"",
"semantic-release": "yarn build && semantic-release"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^25.4.0",
"npm-run-all": "4.1.5",
"prettier": "^2.0.5",
"rimraf": "3.0.2",
"seedrandom": "^3.0.5",
"semantic-release": "^19.0.3",
"webpack": "4.43.0",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "https://github.com/rmrs/random-location.git"
},
"bugs": {
"url": "https://github.com/rmrs/random-location/issues"
},
"homepage": "https://github.com/rmrs/random-location",
"keywords": ["random", "location", "coordinates", "radius", "central", "center", "point"]
}