This repository has been archived by the owner on Apr 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.03 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
{
"name": "elide-jsonapi-client",
"version": "1.0.3",
"description": "JSON-API client for Elide based APIs",
"license": "MIT",
"keywords": [
"json",
"api",
"jsonapi",
"json-api",
"elide",
"client"
],
"main": "dist/elide-jsonapi-client.umd.js",
"module": "dist/elide-jsonapi-client.es.js",
"typings": "dist/types/elide-jsonapi-client.d.ts",
"files": [
"dist"
],
"author": {
"name": "Justin M. Williams",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/nerdstep/elide-jsonapi-client.git"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.js && typedoc --out docs --target es6 --theme minimal --mode file src",
"start": "rollup -c rollup.config.js -w",
"test": "yarn run lint && jest --coverage --no-cache",
"test:dev": "jest",
"test:watch": "jest --watch",
"deploy-docs": "ts-node tools/gh-pages-publish",
"deploy-docs:local": "env-cmd ./.env.local ts-node tools/gh-pages-publish",
"report-coverage": "minicat coverage/lcov.info | coveralls",
"commit": "npx git-cz",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{md,js,json,ts}": [
"prettier --write"
]
},
"jest": {
"preset": "ts-jest",
"transform": {
".(ts|tsx)": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/src/typings/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverage": true,
"testURL": "http://localhost"
},
"peerDependencies": {
"axios": "^0.19.2"
},
"dependencies": {
"axios-extensions": "^3.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"axios": "^0.19.2",
"axios-mock-adapter": "^1.18.1",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "3.2.0",
"env-cmd": "^10.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"minicat": "^1.0.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
}
}