-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.48 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
{
"name": "@nrfcloud/application-protocols",
"version": "1.1.0",
"description": "Contains the application protocol definition for long-range devices connecting to nRF Connect for Cloud",
"main": "dist/index.js",
"module": "dist/index.mjs",
"type": "module",
"scripts": {
"fix": "npm run prettier:fix",
"lint": "npm run tslint && npm run prettier:lint",
"prettier": "prettier --write \"./__tests__/**/*.ts\"",
"test": "jest",
"tslint": "tslint --project ./tsconfig.json",
"prettier:fix": "prettier \"./__tests__/**/*.ts\" --write",
"prettier:lint": "prettier --list-different \"./__tests__/**/*.ts\"",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nRFCloud/application-protocols.git"
},
"keywords": [
"nRFCloud",
"IoT",
"NordicSemiconductor"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nRFCloud/application-protocols/issues"
},
"homepage": "https://github.com/nRFCloud/application-protocols#readme",
"dependencies": {
"ajv": "^8.8.1",
"tcomb": "^3.2.29"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@nrfcloud/tslint-config": "^3.11.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/glob": "^7.1.3",
"@types/jest": "^27.0.2",
"@types/node": "^16.0.0",
"glob": "^7.1.7",
"husky": "^7.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rollup": "^2.59.0",
"rollup-plugin-polyfill-node": "^0.7.0",
"ts-jest": "^27.0.3",
"tslint": "^5.20.1",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testPathIgnorePatterns": [
"dist"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"coverageReporters": [
"html",
"lcov"
],
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"testURL": "http://localhost"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "npm run lint && npm run test"
}
},
"engines": {
"npm": ">=8.19.4",
"yarn": "use npm",
"node": ">=16.20.0"
}
}