-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.76 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
47
48
49
50
51
52
53
54
55
56
{
"name": "@realiotech/realiojs",
"version": "1.0.0",
"description": "Js library for Realio Network",
"main": "index.js",
"license": "MIT",
"private": "false",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/realiotech/realiojs.git"
},
"homepage": "https://github.com/realiotech/realiojs#readme",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "lerna run --parallel build",
"lerna:publish": "lerna publish from-package",
"build:fresh": "yarn clean && yarn build",
"build:patch:publish": "yarn build:fresh && yarn patch && yarn lerna:publish",
"patch": "lerna version patch",
"clean": "lerna run --parallel clean && shx rm -rf .build-cache *.log coverage junit.xml",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"coverage": "jest --coverage",
"lint": "eslint -c './.eslintrc.js' './packages/**/*.{ts,js}'",
"format": "eslint --fix -c './.eslintrc.js' './packages/**/*.{ts,js}'",
"lerna": "lerna"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.7.3"
}
}