-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 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
{
"name": "depository",
"version": "0.0.1",
"private": true,
"description": "A reactive storage engine",
"author": "Sune Simonsen",
"license": "MIT",
"bugs": "https://github.com/sunesimonsen/depository/issues",
"repository": {
"type": "git",
"url": "https://github.com/sunesimonsen/depository"
},
"scripts": {
"test": "lerna run test",
"format": "prettier --write '**/*.{js,mjs,md,json}'",
"import-icons": "node ./scripts/import-icons.js && yarn format",
"lint": "eslint . && prettier --check '**/*.{js,mjs,md,json}'",
"update-toc": "for f in `ls packages/*/Readme.md`; do markdown-toc -i $f; done; yarn format",
"ci": "yarn lint && yarn test",
"release": "lerna publish"
},
"devDependencies": {
"@transformation/core": "^4.0.0",
"@transformation/ejs": "^4.0.0",
"@transformation/file": "^4.0.0",
"@transformation/glob": "^4.0.0",
"@zendeskgarden/svg-icons": "^6.29.0",
"change-case": "^4.1.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"lerna": "^4.0.0",
"markdown-toc": "^1.2.0",
"prettier": "^2.2.1"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"docs/*"
]
},
"engines": {
"node": ">=12"
}
}