-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "prairie",
"version": "4.1.2",
"description": "Add/Modify fields on an object with composable functions.",
"exports": "./index.js",
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"type": "module",
"scripts": {
"docs": "documentation build index.js -f md -o API.md",
"preinstall": "npx only-allow pnpm",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/cape-io/prairie.git"
},
"jest": {
"transform": {}
},
"keywords": [
"lodash",
"set",
"update",
"fields",
"flow",
"functional",
"collection",
"object"
],
"author": "Kai Curry <[email protected]> (http://www.cape.io/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/cape-io/prairie/issues"
},
"homepage": "https://github.com/cape-io/prairie",
"dependencies": {
"lodash": "^4.17.21",
"understory": "^2.0.3"
},
"devDependencies": {
"documentation": "^14.0.2",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-lodash-fp": "2.2.0-a1",
"jest": "^29.6.1"
}
}