forked from jumpn/utils-composite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.24 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
{
"name": "@betty-blocks/utils-composite",
"version": "0.9.1",
"description": "Composite utilities (immutability, fp helpers)",
"module": "dist/index.js",
"main": "compat/cjs/index.js",
"react-native": "src/index.js",
"scripts": {
"flow-copy-source": "flow-copy-source -v src",
"build:clean": "rm -rfv dist compat",
"build:flow": "yarn run flow-copy-source dist && yarn run flow-copy-source compat/cjs",
"build:index": "create-index --banner '// @flow\n\n/*::\nexport * from \"./types\";\n*/' src/ && sed -f indexIgnore.sed -i src/index.js && yarn run lint:fix src/index.js",
"build:readme": "pkg-to-readme --template ./readmeTemplate.ejs --force && documentation readme src/** --markdown-toc false --section API && doctoc README.md",
"build:src": "rollup -c",
"build": "yarn run build:clean && yarn run build:index && yarn run build:src && yarn run build:flow",
"lint": "eslint",
"lint:fix": "yarn run lint --fix",
"npm:publish": "np",
"precommit": "lint-staged",
"commit": "commit",
"commitmsg": "commitlint -e",
"version": "yarn run build:index && yarn run build:readme && git add README.md src/index.js",
"prepack": "yarn run build:clean && yarn run build:src && yarn run build:flow"
},
"lint-staged": {
"*.js": [
"yarn run lint:fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jumpn/utils-composite.git"
},
"author": "Mauro Titimoli <[email protected]> (https://github.com/mgtitimoli)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jumpn/utils-composite/issues"
},
"homepage": "https://github.com/jumpn/utils-composite#readme",
"keywords": [
"composite",
"array",
"object",
"fp",
"functional",
"utilities",
"utils"
],
"dependencies": {
"@betty-blocks/utils-array": "0.4.0",
"@babel/runtime": "^7.17.2",
"core-js": "^3.6.5",
"fast-deep-equal": "1.0.0",
"flow-static-land": "0.2.8"
},
"devDependencies": {
"@commitlint/cli": "4.2.2",
"@commitlint/config-angular": "4.2.1",
"@commitlint/prompt-cli": "4.2.2",
"@babel/core": "7.13.0",
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "7.16.7",
"@babel/plugin-proposal-class-static-block": "^7.16.7",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.16.7",
"babel-eslint": "10.0.1",
"babel-plugin-polyfill-corejs3": "^0.5.2",
"create-index": "2.2.0",
"doctoc": "1.3.0",
"documentation": "8.1.0",
"eslint": "5.10.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-flowtype-errors": "3.6.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "3.0.0",
"flow-bin": "0.88.0",
"flow-copy-source": "2.0.2",
"flow-typed": "2.5.1",
"husky": "0.14.3",
"lint-staged": "4.3.0",
"np": "2.16.1",
"pascal-case": "2.0.1",
"pkg-to-readme": "1.1.0",
"prettier": "1.15.3",
"rollup": "0.67.4",
"rollup-plugin-babel": "4.1.0",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-uglify": "2.0.1",
"uglify-es": "3.1.7"
}
}