-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
61 lines (61 loc) · 1.91 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
{
"name": "transitive-js",
"description": "A tool for generating dynamic stylized transit maps that are easy to understand.",
"keywords": [
"d3",
"maps",
"GTFS"
],
"author": "Conveyal",
"homepage": "http://conveyal.com/",
"repository": {
"type": "git",
"url": "https://github.com/conveyal/transitive.js.git"
},
"main": "dist/index.js",
"module": "dist/transitive-js.esm.js",
"typings": "dist/transitive.d.ts",
"dependencies": {
"augment": "4.3.0",
"component-each": "0.2.6",
"component-emitter": "1.2.1",
"d3": "^3.5.8",
"debug": "^2.5.1",
"lodash.foreach": "^4.5.0",
"measure-text": "^0.0.4",
"priorityqueuejs": "1.0.0",
"rounded-rect": "^0.0.1",
"sphericalmercator": "^1.0.5",
"svg.js": "^2.6.5"
},
"scripts": {
"build": "tsdx build -i lib/transitive.ts --target node",
"cover": "tsdx test --coverage --collectCoverageFrom=lib/**/*",
"deploy-storybook": "storybook-to-aws-s3 --bucket-path=transitive.js --s3-sync-options=--acl=public-read",
"jest": "tsdx test",
"lint": "tsdx lint __tests__ lib stories .storybook --quiet",
"prepublish": "yarn build",
"semantic-release": "semantic-release",
"start": "start-storybook -p 5555",
"test": "yarn run lint && yarn jest"
},
"devDependencies": {
"@opentripplanner/base-map": "^1.0.4",
"@opentripplanner/core-utils": "^3.0.2",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/react": "^6.3.7",
"@storybook/storybook-deployer": "^2.8.10",
"@types/component-emitter": "^1.2.10",
"@types/d3": "^3.5.8",
"eslint-plugin-prettier": "^3.4.0",
"leaflet": "^1.7.1",
"lodash.isequal": "^4.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": "^2.6.1",
"semantic-release": "^17.2.3",
"styled-components": "^5.2.1",
"tsdx": "https://github.com/ibi-group/tsdx"
}
}