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 0
/
package.json
122 lines (122 loc) · 3.5 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
{
"name": "reactotron-apisauce",
"version": "3.0.0",
"description": "A Reactotron plugin for Apisauce.",
"author": "Infinite Red",
"license": "MIT",
"bugs": {
"url": "https://github.com/infinitered/reactotron/issues"
},
"homepage": "https://github.com/infinitered/reactotron-apisauce",
"repository": "https://github.com/infinitered/reactotron-apisauce",
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"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=development rollup -c",
"tsc": "tsc",
"ci:test": "yarn test",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"dependencies": {
"apisauce": "^0.16.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.3.3",
"@semantic-release/git": "^7.1.0-beta.3",
"@types/jest": "^24.0.6",
"@types/json-server": "^0.14.0",
"@types/node": "^11.9.5",
"@typescript-eslint/eslint-plugin": "^1.4.1",
"@typescript-eslint/parser": "^1.4.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0",
"json-server": "^0.14.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"rollup": "^1.2.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^7.0.0",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-resolve": "^0.0.1-predev.1",
"semantic-release": "^16.0.0-beta.36",
"trash-cli": "^1.4.0",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"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"
]
}
}