-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 936 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
{
"name": "@splunk/censys-splunk",
"license": "UNLICENSED",
"private": true,
"scripts": {
"build": "lerna run build",
"format": "git ls-files | grep -E \"\\.(jsx?|css)$\" | xargs prettier --write",
"format:verify": "git ls-files | grep -E \"\\.(jsx?|css)$\" | xargs prettier --list-different",
"lint": "lerna run lint --no-sort",
"lint:ci": "lerna run lint:ci --no-sort",
"setup": "yarn && lerna run build",
"start": "lerna run start --stream --no-sort --concurrency 100",
"test": "lerna run test --stream --no-sort"
},
"devDependencies": {
"@prettier/plugin-xml": "^2.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.0",
"lerna": "^2.9.0",
"prettier": "^2.7.1",
"stylelint": "^15.10.3"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"@splunk/splunk-utils": "^3.0.1",
"follow-redirects": "^1.15.6"
}
}