-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.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
{
"name": "compose-tiny",
"version": "1.1.3",
"description": "A very tiny compose function.",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "index.js",
"types": "compose-tiny.d.ts",
"license": "MIT",
"files": [
"index.js",
"compose-tiny.d.ts",
"dist/"
],
"author": {
"name": "Andrew Lisowski",
"email": "[email protected]"
},
"scripts": {
"test": "jest",
"lint": "xo",
"build": "microbundle",
"dev": "microbundle watch",
"benchmark": "node benchmark",
"check-bundle": "bundlewatch",
"release": "github-semantic-version --bump --changelog --push --publish"
},
"repository": {
"type": "git",
"url": "https://github.com/hipstersmoothie/compose-tiny.git"
},
"devDependencies": {
"benchmark": "^2.1.4",
"bundlewatch": "^0.2.1",
"chain-function": "^1.0.1",
"cli-table2": "^0.2.0",
"compose-funcs": "^1.0.0",
"compose-function": "^3.0.3",
"composing": "^1.0.1",
"fj-compose": "^1.1.0",
"github-semantic-version": "^7.6.0",
"husky": "^1.0.1",
"jest": "^23.6.0",
"just-compose": "^1.1.0",
"lint-staged": "^7.3.0",
"logdown": "^3.2.7",
"microbundle": "^0.6.0",
"ora": "^3.0.0",
"prettier": "^1.14.3",
"squad": "^3.0.0",
"xo": "^0.23.0"
},
"xo": {
"env": [
"jest"
],
"extends": [
"prettier"
],
"plugins": [
"prettier"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"gsv": {
"majorLabel": "major",
"minorLabel": "minor",
"patchLabel": "patch",
"internalLabel": "internal",
"addReleasedLabelOnSuccess": "released"
},
"bundlewatch": {
"files": [
{
"path": "index.js",
"maxSize": "150B"
}
]
}
}