forked from nbbj-digital/stroll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.98 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@nbbj/stroll",
"version": "2.2.4",
"description": "NodeJS computational library for finding the optimal walking path to be as exposed to nature as possible.",
"license": "MIT",
"homepage": "https://github.com/nbbj-digital/stroll#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nbbj-digital/stroll.git"
},
"main": "dist/index.js",
"author": {
"name": "Petr Mitev",
"email": "p.mitevpi@gmail.com",
"url": "https://mitevpi.com/"
},
"contributors": [
"Nate Holland",
"NBBJ"
],
"bugs": {
"url": "https://github.com/nbbj-digital/stroll/issues"
},
"keywords": [
"stroll",
"walk",
"pathfinding",
"wayfinding",
"analysis",
"nature",
"architecture",
"design",
"urban",
"planning",
"architecture",
"computation",
"nbbj"
],
"files": [
"dist",
"src",
"README.md",
"samples"
],
"jest": {
"verbose": true
},
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint .",
"flow": "flow check",
"docs": "documentation build src/index.js -f md -o docs/README.md && documentation build src/** -f html -o docs",
"postdocs": "",
"clean": "rimraf dist",
"flowbuild": "flow-copy-source src dist",
"prebuild": "npm run clean && npm run flowbuild",
"build": "babel src -d dist",
"preversion": "npm run lint && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@turf/bbox": "^6.0.1",
"@turf/circle": "^6.0.1",
"@turf/distance": "6.0.1",
"@turf/helpers": "6.1.4",
"@turf/point-grid": "^6.0.1",
"@turf/random": "^6.0.2",
"axios": "0.18.0",
"ngraph.graph": "0.0.18",
"ngraph.path": "^1.1.0",
"node-vibrant": "3.2.0-alpha",
"suncalc": "1.8.0"
},
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/preset-env": "7.4.3",
"@babel/preset-flow": "7.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.7.1",
"documentation": "10.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-flowtype": "3.6.1",
"eslint-plugin-flowtype-errors": "4.1.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-prettier": "3.0.1",
"flow-bin": "0.97.0",
"flow-copy-source": "2.0.3",
"husky": "2.1.0",
"jest": "24.7.1",
"lint-staged": "8.1.5",
"opn-cli": "4.1.0",
"prettier": "1.17.0",
"rimraf": "2.6.3",
"standard-changelog": "2.0.7"
}
}