-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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-dataservice-api",
"version": "1.6.0",
"description": "Generated from the OpenAPI specification of the HERE Open Location Platform Data API",
"main": "index.js",
"typings": "index",
"directories": {
"test": "test",
"lib": "lib"
},
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "tsc -p ./test/tsconfig.json && mocha",
"coverage": "nyc npm run test",
"codecov": "npm run coverage && nyc report --reporter=lcov",
"prepare": "tsc --sourceMap false && npm run bundle",
"bundle": "npm run bundle:dev && npm run bundle:prod",
"bundle:prod": "webpack --env.NODE_ENV=production",
"bundle:dev": "webpack --env.NODE_ENV=development"
},
"nyc": {
"include": [
"lib/**/*.ts",
"lib/**/*.js"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:heremaps/here-data-sdk-typescript.git",
"directory": "@here/olp-sdk-dataservice-api"
},
"author": {
"name": "HERE Europe B.V.",
"url": "https://here.com"
},
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/sinon-chai": "^3.2.3",
"@types/sinon": "7.0.3",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"sinon-chai": "^3.4.0",
"sinon": "7.4.2",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"ts-node": "^8.5.4",
"source-map-support": "^0.5.16",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "4.0.3",
"tslib": "1.13.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"typedoc": "^0.15.6"
}
}