-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 957 Bytes
/
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
{
"name": "metalint",
"description": "metalinter project",
"author": {
"name": "Cliqz"
},
"contributors": [
{
"name": "Rémi Berson",
"email": "remi@cliqz.com"
}
],
"license": "MPL-2.0",
"homepage": "https://github.com/cliqz/metalint#readme",
"bugs": {
"url": "https://github.com/cliqz/metalint/issues"
},
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cliqz/metalint.git"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"bootstrap": "npx lerna bootstrap",
"lint": "lerna run --parallel lint",
"build": "lerna run build",
"test": "lerna run --concurrency 1 test",
"clean": "lerna run --parallel clean && lerna clean --yes && rimraf node_modules"
},
"devDependencies": {
"lerna": "^3.15.0",
"prettier": "^1.17.1",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"yarn": "^1.17.3"
}
}