-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.16 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": "geotab-rx",
"main": "./dist/index.js",
"module": "./dist/_esm/index.js",
"es2015": "./dist/_esm5/index.js",
"typings": "./dist/index.d.ts",
"author": "Marvin Countryman <me@maar.vin>",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/mcountryman/geotab-rx.git",
"description": "Unofficial Typescript Geotab SDK.",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "yarn build:targets && yarn build:prepare",
"build:doc": "typedoc",
"build:cjs": "tsc -b ./tsconfig.cjs.json",
"build:esm": "tsc -b ./tsconfig.esm.json",
"build:esm5": "tsc -b ./tsconfig.esm5.json",
"build:types": "tsc -b ./tsconfig.types.json",
"build:targets": "concurrently yarn:build:doc yarn:build:cjs yarn:build:esm yarn:build:esm5 yarn:build:types",
"build:prepare": "node ./tools/prepare",
"test": "jest",
"test:ci": "jest --ci --coverage",
"lint": "eslint src test --ext .ts",
"clean": "rimraf dist",
"generate": "yarn generate:clean && yarn generate:dotnet && yarn generate:pretty",
"generate:clean": "rimraf ./src/models",
"generate:dotnet": "dotnet run --project tools/sicilian",
"generate:pretty": "eslint --write ./src/models"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": true,
"printWidth": 90,
"singleQuote": false,
"trailingComma": "es5"
},
"lint-staged": {
"*.ts": "yarn lint --cache --fix"
},
"dependencies": {
"uuid-random": "^1.3.2"
},
"sideEffects": false,
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.35",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"concurrently": "^5.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"glob": "^7.1.6",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"typedoc": "^0.20.20",
"typescript": "^4.1.5"
},
"peerDependencies": {
"rxjs": "6.x.x"
},
"optionalDependencies": {
"isomorphic-fetch": "^3.0.0"
}
}