This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
forked from mmintel/datocms-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.37 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
{
"name": "@inlight-media/datocms-tools",
"version": "0.1.13",
"description": "Useful tools for DatoCMS",
"repository": "github:inlight-media/datocms-tools",
"main": "dist/lib.min.js",
"bin": {
"clear-relations": ".bin/clear-relations.js",
"export-content": ".bin/export-content.js",
"export-menu": ".bin/export-menu.js",
"export-models": ".bin/export-models.js",
"extract-models": ".bin/extract-models.js",
"import-content": ".bin/import-content.js",
"import-menu": ".bin/import-menu.js",
"import-models": ".bin/import-models.js",
"remove-models": ".bin/remove-models.js",
"reset": ".bin/reset.js",
"reset-content": ".bin/reset-content.js"
},
"files": [
"dist"
],
"scripts": {
"test": "jest --setupFiles dotenv/config",
"lint": "eslint lib/*.js",
"build": "rollup -c",
"reset": "node -r esm scripts/reset.js",
"release": "npm run test && standard-version && git push --follow-tags && npm publish --access=public"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
},
"dependencies": {
"datocms-client": "^3.0.14",
"esm": "^3.2.25",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15",
"prompts": "^2.2.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.5.5",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"commitlint": "^8.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.0.10",
"jest": "^24.9.0",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.3",
"standard-version": "^7.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"volta": {
"node": "14.17.0"
}
}