-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "@tilework/mosaic-monorepo",
"version": "0.0.1",
"description": "The convenient plugin system for JS",
"main": "index.js",
"private": "true",
"scripts": {
"postinstall": "lerna bootstrap && npm explore @tilework/mosaic -- npm run build",
"clean": "lerna clean --yes",
"lint": "eslint core/ integration/",
"npm:publish": "lerna publish --exact --no-private",
"npm:canary": "lerna publish --canary --exact --no-private --force-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tilework/mosaic.git"
},
"keywords": [
"plugin",
"system",
"ioc"
],
"author": "Jegors Batovs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tilework/mosaic/issues"
},
"homepage": "https://github.com/tilework/mosaic#readme",
"workspaces": [
"sample-packages/*",
"core/*",
"integration/*"
],
"devDependencies": {
"lerna": "^3.22.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.24.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-simple-import-sort": "^7.0.0"
}
}