This repository was archived by the owner on Oct 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 2.17 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
{
"name": "@geops/tree-lib",
"description": "Library for tree recommendations.",
"license": "MIT",
"version": "1.0.0",
"source": "src/index.js",
"main": "build/index.js",
"devDependencies": {
"@geops/mapbox-gl-fonts": "^3.0.0",
"@neutrinojs/airbnb-base": "^9.1.0",
"@neutrinojs/jest": "^9.1.0",
"@neutrinojs/library": "^9.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"documentation": "^12.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.2.4",
"lint-staged": "^10.1.1",
"netlify-cli": "^2.40.0",
"neutrino": "^9.1.0",
"prettier": "^2.0.2",
"semantic-release": "^17.0.4",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"scripts": {
"data:nais:ecogram": "node data/nais/ecogram.js && prettier --write data/*.json",
"data:transform": "yarn data:stop && yarn data:start && yarn data:stop",
"data:start": "cd data && ./docker-start.sh",
"data:stop": "cd data && docker-compose down --remove-orphans --volumes",
"data:spatial:export": "cd data && docker-compose exec db sh -c '/data/spatial/2-export.sh'",
"data:spatial:tile": "cd data && docker-compose exec tippecanoe sh -c '/data/spatial/3-tile.sh'",
"data:spatial:fonts": "./data/spatial/4-fonts.sh",
"data:spatial:deploy": "netlify deploy --dir=data/spatial/tiles --prod --site=5dc39927-3ba0-485e-b01d-2e15385ce212",
"doc:build": "documentation build src/** --format html --output doc --config documentation.yml",
"doc:serve": "documentation serve --config documentation.yml --watch src/**",
"build": "webpack --mode production",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint --cache --format codeframe src",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release"
},
"dependencies": {
"lodash.difference": "^4.5.0",
"lodash.intersection": "^4.4.0",
"lodash.union": "^4.6.0",
"lodash.xor": "^4.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/geops/tree-lib.git"
}
}