-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.61 KB
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
{
"name": "@autolist/contentful",
"version": "0.1.15",
"module": "index.js",
"jsnext:main": "index.js",
"main": "dist/index.js",
"license": "MIT",
"private": false,
"description": "An ORM layer for Contentful",
"homepage": "https://github.com/autolist/contentful",
"author": "Autolist Inc. <help@autolist.com>",
"keywords": [
"orm",
"contentful"
],
"repository": {
"type": "git",
"url": "https://github.com/autolist/contentful.git"
},
"scripts": {
"lint": "eslint . --quiet --ext .json --ext .js",
"test": "jest",
"build": "rollup -c"
},
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"lodash": "^4.17.10"
},
"resolutions": {
"babel-core": "^7.0.0-0"
},
"devDependencies": {
"@autolist/eslint-config-autolist": "^0.9.0",
"@babel/core": "^7.24.0",
"@babel/plugin-external-helpers": "^7.0.0-rc.3",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.3",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-rc.4",
"@babel/preset-env": "^7.0.0-rc.3",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.5.1",
"eslint": "^5.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^23.0.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^27.5.1",
"prettier": "^1.18.2",
"rollup": "1.26.5",
"rollup-copy-plugin": "^0.1.0",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.1"
}
}