-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.7 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
{
"name": "pointless-fetch",
"version": "0.0.2",
"sideEffects": false,
"description": "Functional point-free utilities for fetch",
"main": "dist/js",
"module": "dist/es",
"unpkg": "dist/es",
"typings": "src",
"keywords": [
"fetch",
"utils",
"functional",
"point-free",
"pointfree",
"treeshakeable",
"tree-shaking"
],
"dependencies": {},
"devDependencies": {
"@kazanexpress/tslint": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^12.11.7",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"bili": "^4.8.1",
"coveralls": "^3.0.7",
"jest": "^24.9.0",
"madge": "^3.5.0",
"rollup-plugin-typescript2": "^0.24.3",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"ttypescript": "^1.5.7",
"typescript": "^3.7.2"
},
"scripts": {
"test": "jest -i",
"build:js": "ttsc --outDir dist/js -t ES2015",
"build:es": "ttsc --outDir dist/es -t ES2015 --module esnext",
"build:next": "ttsc --outDir dist/esnext --module esnext",
"build:umd": "bili",
"build": "npm run checks && npm run build:js && npm run build:es && npm run build:next && npm run build:umd",
"dev": "tsc --noEmit -w",
"coverage": "cat ./coverage/lcov.info | coveralls",
"checks": "madge --circular --extensions ts src/index.ts",
"commit-build": "(git diff --quiet && git diff --staged --quiet) || (git add . && git commit -m \"Update dist\")",
"preversion": "npm t && npm run build && npm run commit-build",
"prerelease": "npm version prerelease --preid=rc && npm publish --tag next && git push",
"pre-minor": "npm version preminor --preid=rc && npm publish --tag next && git push",
"pre-major": "npm version premajor --preid=rc && npm publish --tag next && git push",
"patch": "npm version patch && npm publish && git push",
"minor": "npm version minor && npm publish && git push",
"major": "npm version major && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raiondesu-experiments/pointless-fetch.git"
},
"author": "{{author}}",
"license": "MIT",
"bugs": {
"url": "https://github.com/raiondesu-experiments/pointless-fetch/issues"
},
"homepage": "https://github.com/raiondesu-experiments/pointless-fetch#readme",
"jest": {
"preset": "ts-jest",
"verbose": true,
"coverageReporters": [
"lcov",
"text"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests?/",
"/dist/"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
},
"collectCoverage": true
}
}