-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "@flyingeek/lidojs",
"version": "1.6.77",
"description": "convert Lido OFP text files",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "dist/lidojs.js",
"author": "Eric Delord",
"license": "ISC",
"repository": "https://github.com/flyingeek/lidojs",
"scripts": {
"lint": "eslint src/**",
"test": "jest test",
"testwmo": "jest testwmo",
"test-w": "jest --watch test",
"testwmo-w": "jest --watch testwmo",
"clean": "rimraf dist/**",
"coverage": "jest --collectCoverageFrom=src/**.js --coverage src",
"build": "webpack",
"build_with_wmo": "webpack && node src/makeWmo.js",
"makefish": "node scripts/makeFish.js",
"makewmo": "node scripts/makeWmo.js",
"diffogimet": "node scripts/diffOgimetIdx.js",
"updateogimet": "node scripts/updateOgimetIdx.js",
"release": "npm version patch && webpack"
},
"browserslist": [
"last 2 chrome versions",
"last 2 safari versions",
"last 2 firefox versions",
"last 2 ios versions"
],
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/register": "^7.14.5",
"@jest/types": "^25.5.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.2.0",
"browserslist": "^4.16.6",
"eslint": "^7.29.0",
"follow-redirects": "^1.14.1",
"jest": "^25.5.4",
"ngeohash": "^0.6.3",
"papaparse": "^5.3.1",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2"
}
}