-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
75 lines (75 loc) · 2.08 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
{
"name": "@here/olp-sdk-ts",
"version": "2.0.0",
"description": "HERE OLP SDK for TypeScript",
"author": {
"name": "HERE Europe B.V.",
"url": "https://here.com"
},
"license": "Apache-2.0",
"private": true,
"workspaces": [
"@here/*"
],
"nyc": {
"include": [
"@here/**/*.ts",
"@here/**/*.js"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna run build",
"test": "lerna run test",
"http-server-testing-bundles": "serve -l tcp://localhost:8080 tests/integration/bundles/umd/static",
"test-published-bundles": "cd tests/integration/bundles/umd && tsc && cd - && mocha --timeout 5000 tests/integration/bundles/umd/olp-sdk-published.test.js",
"test-generated-bundles": "cd tests/integration/bundles/umd && tsc && cd - && mocha --timeout 5000 tests/integration/bundles/umd/olp-sdk-generated.test.js",
"api-breaks-test": "nyc mocha --opts ./tests/integration/api-breaks/mocha.opts",
"integration-test": "nyc mocha --opts ./tests/integration/mocha.opts",
"functional-test": "nyc mocha --opts ./tests/functional/mocha.opts",
"coverage": "lerna run coverage",
"codecov": "lerna run codecov",
"lint": "lerna run lint",
"bundle": "lerna run bundle",
"bundle:dev": "lerna run bundle:dev",
"bundle:prod": "lerna run bundle:prod",
"typedoc": "npx typedoc --options typedoc.json"
},
"devDependencies": {
"@types/node": "18.7.14",
"lerna": "^4.0.0",
"typescript": "4.0.3",
"codecov": "3.7.2",
"mockserver-node": "^5.12.0",
"mockserver-client": "^5.12.0",
"ts-node": "10.9.2",
"puppeteer": "^13.1.3",
"puppeteer-to-istanbul": "^1.4.0",
"nyc": "^15.0.0",
"mocha": "^7.1.1",
"serve": "^13.0.2"
}
}