This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
126 lines (126 loc) · 3.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "reactotron-core-server",
"version": "2.1.0",
"description": "Grants Reactotron servers the ability to talk to a Reactotron client.",
"author": "Infinite Red",
"license": "MIT",
"bugs": {
"url": "https://github.com/infinitered/reactotron-core-server/issues"
},
"homepage": "https://github.com/infinitered/reactotron-core-server",
"repository": "https://github.com/infinitered/reactotron-core-server",
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"typings": "dist/types/reactotron-core-server.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --notify",
"format": "prettier --write **/*.ts",
"build": "npm-run-all clean tsc compile",
"build:dev": "npm-run-all clean tsc compile:dev",
"clean": "trash dist",
"lint": "eslint src test --ext .ts,.tsx",
"compile": "NODE_ENV=production rollup -c",
"compile:dev": "NODE_ENV=dev rollup -c",
"tsc": "tsc",
"ci:lint": "yarn lint",
"ci:test": "yarn test",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"dependencies": {
"mitt": "1.1.3",
"ramda": "0.26.1",
"ws": "7.1.2"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/preset-env": "7.14.5",
"@babel/preset-typescript": "7.14.5",
"@semantic-release/git": "8.0.0",
"@types/jest": "26.0.23",
"@types/node": "14.17.3",
"@types/ramda": "0.26.44",
"@types/ws": "6.0.4",
"@typescript-eslint/eslint-plugin": "2.9.0",
"@typescript-eslint/parser": "2.9.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"get-port": "5.1.1",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"prettier": "2.3.1",
"rollup": "2.52.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-babel-minify": "10.0.0",
"rollup-plugin-filesize": "9.1.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-resolve": "0.0.1-predev.1",
"semantic-release": "16.0.4",
"trash-cli": "4.0.0",
"ts-jest": "26.5.6",
"typescript": "4.3.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"standard",
"prettier"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"globals": {
"__DEV__": false,
"jasmine": false,
"beforeAll": false,
"afterAll": false,
"beforeEach": false,
"afterEach": false,
"test": false,
"expect": false,
"describe": false,
"jest": false,
"it": false
},
"rules": {
"no-unused-vars": 0,
"no-undef": 0,
"space-before-function-paren": 0,
"@typescript-eslint/indent": 0,
"@typescript-eslint/explicit-member-accessibility": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-object-literal-type-assertion": 0,
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/member-delimiter-style": 0
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/*.test.[tj]s"
]
}
}