-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.66 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@openhps/fingerprinting",
"version": "0.1.9",
"description": "Open Hybrid Positioning System",
"author": "Maxim Van de Wynckel",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenHPS/openhps-fingerprinting.git"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"unpkg": "dist/web/openhps-fingerprinting.min.js",
"jsdelivr": "dist/web/openhps-fingerprinting.min.js",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"test": "mocha --config test/.mocharc.json",
"cover": "nyc mocha --config test/.mocharc.json && nyc report --reporter=cobertura",
"cover:ci": "nyc mocha --config test/.mocharc.json --reporter mocha-junit-reporter && nyc report --reporter=cobertura",
"lint": "eslint src/**",
"clean": "shx rm -rf ./dist && shx rm -rf ./docs/out",
"build": "npm run clean && npm-run-all --parallel build:esm build:cjs build:typedoc && npm run build:webpack",
"build:esm": "tsc --module es2015 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:webpack": "npm-run-all --parallel build:webpack:*",
"build:webpack:prod": "webpack --env prod --progress --",
"build:webpack:dev": "webpack --env dev --progress --",
"build:typedoc": "typedoc --options docs/typedoc.json",
"bump:development": "standard-version --prerelease alpha -m 'chore(alpha): %s' --skip.changelog",
"bump:beta": "standard-version --prerelease beta -m 'chore(beta): %s' --skip.changelog",
"bump:release": "standard-version -m 'chore(release): %s' --skip.changelog"
},
"keywords": [
"openhps",
"fingerprinting"
],
"dependencies": {
"cubic-spline": "^3.0.3",
"uuid": "^10.0.0"
},
"peerDependencies": {
"@openhps/core": ">=0.7.4",
"reflect-metadata": ">=0.2.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@openhps/core": "^0.7.4",
"@openhps/csv": "0.1.11",
"@openhps/rf": "^0.1.62",
"@purtuga/esm-webpack-plugin": "^1.5.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": ">=7.13.0",
"@typescript-eslint/parser": ">=7.13.0",
"chai": "^4",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.12",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"mocha": "^10.4.0",
"mocha-junit-reporter": "^2.2.1",
"npm-run-all": "^4.1.5",
"nyc": "^17.0.0",
"prettier": "^3.3.2",
"reflect-metadata": ">=0.2.2",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"terser-webpack-plugin": "^5.3.10",
"ts-node": ">=10.9.2",
"typedoc": ">=0.25.13",
"typescript": ">=5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
},
"nyc": {
"branches": 0,
"lines": 20,
"functions": 17,
"statements": 20,
"include": [
"src"
],
"exclude": [
"test"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": true,
"all": true,
"check-coverage": true,
"report-dir": "./coverage"
},
"engines": {
"node": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}