-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.04 KB
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
81
82
83
{
"name": "polyline-coordinates",
"version": "2.1.9",
"description": "Utility library for getting coordinates from geojson polylines",
"main": "dist/index.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "node build",
"prepublish": "yarn run build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src test",
"typecheck": "yarn run flow"
},
"files": [
"index.d.ts",
"dist/index.es.js",
"dist/index.es.map.js",
"dist/index.js",
"dist/index.js.map",
"dist/LICENSE.md",
"dist/package.json"
],
"babel": {
"presets": [
"latest",
"stage-0",
"flow"
],
"plugins": [
"transform-runtime"
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "https://github.com/dongy7/polyline-coordinates.git"
},
"keywords": [
"polyline",
"coordinates",
"distances"
],
"author": "Dong Yeop Lee <dongy7@gmail.com> (https://github.com/dongy7)",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.23.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.1.2",
"flow-bin": "^0.50.0",
"jest": "^20.0.4",
"prettier": "^1.5.3",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"bracketSpacing": true,
"useTabs": false,
"tabWidth": 2
}
}