-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 899 Bytes
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
{
"name": "@firmanc/build-tools-javascript",
"version": "0.0.3",
"description": "My configurations and sane defaults for multiple JavaScript tools",
"license": "MIT",
"contributors": [
"Firman Cahyandi <hello@firmanc.com>"
],
"repository": {
"type": "git",
"url": "ssh://git@github.com:Firmanc/build-tools-javascript.git"
},
"engines": {
"node": ">= 12"
},
"volta": {
"node": "12.22.1",
"yarn": "1.22.10"
},
"scripts": {
"setup": "yarn lerna:init && yarn lerna:bootstrap",
"lerna:init": "lerna init",
"lerna:bootstrap": "lerna bootstrap --no-ci",
"lerna:exec": "lerna exec",
"lerna:publish": "lerna exec -- safe-publish",
"lint": "eslint packages"
},
"devDependencies": {
"lerna": "^4.0.0",
"safe-publish": "^1.2.1"
},
"keywords": [
"lint",
"linter",
"eslint",
"tslint",
"stylelint"
]
}