-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
71 lines (71 loc) · 1.78 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
{
"name": "mobx-rest",
"version": "11.0.0",
"description": "REST conventions for mobx.",
"jest": {
"roots": [
"."
],
"transform": {
".+\\.tsx?$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.spec\\.tsx?$"
},
"repository": {
"type": "git",
"url": "[email protected]:masylum/mobx-rest.git"
},
"license": "MIT",
"peerDependencies": {
"mobx": "^6.3.2"
},
"devDependencies": {
"@types/deepmerge": "2.2.0",
"@types/jest": "27.4.0",
"@types/lodash": "4.14.178",
"@types/object.fromentries": "2.0.1",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"benchmark": "2.1.4",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.4",
"jest": "27.4.7",
"lint-staged": "^12.1.7",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"rollup": "2.63.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "0.31.1",
"ts-jest": "27.1.2",
"tslib": "2.3.1",
"typescript": "4.5.4"
},
"main": "lib",
"types": "./lib/index.d.ts",
"scripts": {
"build": "yarn build:clean && rollup --config",
"build:clean": "rimraf lib",
"benchmark": "yarn build && node __tests__/benchmark.js",
"jest": "NODE_PATH=src jest --no-cache",
"lint": "eslint --ext .ts --cache src/ __tests__/",
"prepublish": "yarn build",
"prepush": "yarn test",
"prepare": "husky install",
"test": "yarn lint && yarn jest",
"watch": "rollup --config -w"
},
"lint-staged": {
"{__test__,src}/*": [
"eslint",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"deepmerge": "4.2.2",
"lodash": "4.17.21",
"mobx": "^6.3.2",
"object.fromentries": "2.0.5",
"rollup-plugin-dts": "4.1.0"
}
}