forked from lightbend/kalix-javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 922 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
{
"name": "akkaserverless-javascript-sdk",
"devDependencies": {
"license-check-and-add": "^4.0.2",
"prettier": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0"
},
"scripts": {
"license-check": "license-check-and-add check -f build/license.json",
"license-add": "license-check-and-add add -f build/license.json",
"prettier-format": "prettier --config .prettierrc 'sdk/**/*.{js,ts}' 'tck/**/*.{js,ts}' 'npm-js/**/*.{js,ts}' --write",
"prettier-check": "prettier --config .prettierrc 'sdk/**/*.{js,ts}' 'tck/**/*.{js,ts}' 'npm-js/**/*.{js,ts}' --check",
"lint-fix": "eslint sdk/ --ext .ts --fix",
"lint-check": "eslint sdk/ --ext .ts"
},
"eslintConfig": {
"env": {
"node": true,
"mocha": true
}
}
}