forked from heremaps/here-data-sdk-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 941 Bytes
/
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
{
"name": "@here/olp-sdk-ts",
"version": "0.9.2",
"description": "HERE OLP SDK for TypeScript",
"author": {
"name": "HERE Europe B.V.",
"url": "https://here.com"
},
"license": "Apache-2.0",
"private": true,
"workspaces": [
"@here/*"
],
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"prepare": "npm run clean-dists && npm run build && npm run bundle && npm run typedoc",
"build": "npm run clean-dists && lerna run build",
"test": "lerna run test",
"coverage": "lerna run coverage",
"lint": "lerna run lint",
"bundle": "lerna run bundle",
"bundle:dev": "lerna run bundle:dev",
"bundle:prod": "lerna run bundle:prod",
"typedoc": "npx typedoc --disableOutputCheck --options typedoc.json",
"clean-dists": "rm -rf dist && rm -rf @here/*/dist"
},
"devDependencies": {
"lerna": "3.16.4",
"@types/node": "12.7.5",
"typescript": "3.5.3"
}
}