-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.23 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
{
"name": "@imaginelearning/httprx",
"author": "Imagine Learning",
"version": "0.1.7",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/httprx.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --watch",
"test:ci": "cross-env CI=true tsdx test --coverage",
"lint": "eslint \"src/**/*.{js,ts}\"",
"format": "prettier --config .prettierrc --write \"**/*.{js,json,ts}\"",
"prepack": "tsdx build"
},
"dependencies": {},
"peerDependencies": {
"rxjs": "^6.6.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-fetch-mock": "^3.0.3",
"jest-teamcity-reporter": "^0.9.0",
"lint-staged": "^10.2.11",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -p false"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"*.(js|json|ts)": "pretty-quick --staged --config .prettierrc",
"*.(js|ts)": "yarn lint"
}
}