-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.89 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
81
82
83
{
"name": "tallygo-js",
"version": "1.0.3",
"description": "Javascript wrapper library for TallyGo API calls",
"main": "lib/tallygo.cjs.js",
"module": "lib/talygo.esm.js",
"browser": {
"./lib/tallygo.cjs.js": "./lib/tallygo.browser.cjs.js",
"./lib/tallygo.es.js": "./lib/tallygo.browser.es.js"
},
"files": [
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tallygo/tallygo-js"
},
"bugs": {
"url": "https://github.com/tallygo/tallygo-js/issues"
},
"homepage": "https://github.com/tallygo/tallygo-js#readme",
"author": "Eirik Dentz Sinclair <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@mapbox/flow-remove-types": "^1.3.0-await.upstream.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"chalk": "^2.4.1",
"documentation": "9.0.0-alpha.1",
"eslint": "^5.6.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.82.0",
"flow-coverage-report": "^0.6.0",
"jest": "^23.6.0",
"jest-fetch-mock": "^1.7.4",
"npm-run-all": "^4.1.3",
"regenerator-runtime": "^0.12.1",
"rollup": "^0.66.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^2.0.1",
"st": "^1.2.2"
},
"dependencies": {
"@turf/along": "^6.0.1",
"@turf/bearing": "^6.0.1",
"@turf/distance": "^6.0.1",
"@turf/point-to-line-distance": "^6.0.0",
"isomorphic-unfetch": "^3.0.0",
"isomorphic-ws": "^4.0.1",
"mapbox-gl": "^0.50.0",
"ws": "^6.1.2"
},
"scripts": {
"clean": "rimraf lib dist && mkdirp lib dist",
"rollup:module": "rollup -c rollup/config.module.js",
"rollup:browser": "rollup -c rollup/config.module.browser.js",
"rollup:iife": "rollup -c rollup/config.iife.js",
"rollup:min": "rollup -c rollup/config.iife.js --environment BUILD:production",
"rollup": "npm-run-all --parallel rollup:module rollup:browser rollup:iife rollup:min",
"prepare": "npm run build",
"prepublish": "npm run build",
"build": "npm-run-all clean rollup",
"build:dev": "rollup -c rollup/config.iife.js --environment BUILD:dev",
"watch:dev": "rollup -c rollup/config.iife.js --environment BUILD:dev --watch",
"build:docs": "documentation build src/** -f html -o documentation",
"start": "st --no-cache -H 0.0.0.0 --port 9966 --index examples/index.html .",
"lint": "eslint src/*.js spec/*.js",
"test": "run-s lint test:unit",
"test:unit": "jest spec/** --coverage",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
}
}