-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2 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
74
75
76
77
78
79
80
{
"name": "random-points-generator",
"version": "1.9.1",
"description": "random points generator",
"homepage": "https://github.com/tsamaya/random-points-generator",
"main": "index.js",
"bin": {
"random-points-generator": "bin/random-points-generator"
},
"unpkg": "dist/random-points.min.js",
"repository": {
"type": "git",
"url": "https://github.com/tsamaya/random-points-generator.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,css,md}": [
"prettier --write"
],
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"scripts": {
"build": "webpack --mode production",
"coverage": "nyc mocha --report lcovonly -- -R spec && codecov",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prebuild": "npm run test",
"prepublish": "npm run build",
"pretest": "npm run lint",
"test": "mocha",
"test:watch": "mocha --watch",
"test:coverage": "nyc mocha"
},
"bugs": "https://github.com/tsamaya/random-points-generator/issues",
"keywords": [
"random",
"point",
"generator",
"csv",
"geojson"
],
"author": "Arnaud Ferrand",
"license": "MIT",
"dependencies": {
"@turf/bbox": "^7.1.0",
"@turf/helpers": "^7.1.0",
"@turf/points-within-polygon": "^6.3.0",
"@turf/random": "^7.1.0",
"@turf/unkink-polygon": "^6.3.0",
"lodash": "^4.17.15",
"yargs": "^17.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"chai": "^4.2.0",
"codecov": "^3.8.3",
"eslint": "^9.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^15.11.0",
"husky": "^9.0.6",
"lint-staged": "^15.0.1",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"prettier": "^3.0.0",
"webpack": "^5.6.0",
"webpack-cli": "^6.0.1"
}
}