-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "factorial-mobx-rest-axios-adapter",
"version": "1.0.1",
"description": "official axios adapter for mobx-rest",
"repository": {
"type": "git",
"url": "git@github.com:factorialco/mobx-rest-axios-adapter.git"
},
"license": "MIT",
"jest": {
"preset": "ts-jest"
},
"dependencies": {
"axios": "0.21.1",
"qs": "6.9.0"
},
"devDependencies": {
"@types/jest": "24.0.13",
"@typescript-eslint/eslint-plugin": "1.9.0",
"@typescript-eslint/parser": "1.9.0",
"axios-mock-adapter": "1.17.0",
"eslint": "5.16.0",
"husky": "0.13.4",
"jest": "24.8.0",
"lint-staged": "3.6.0",
"rimraf": "2.6.1",
"rollup": "1.12.1",
"rollup-plugin-node-resolve": "5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"ts-jest": "24.0.2",
"tslib": "1.9.3",
"typescript": "3.4.5"
},
"main": "lib",
"scripts": {
"build": "yarn build:clean && rollup --config",
"build:clean": "rimraf lib",
"jest": "NODE_PATH=src jest --no-cache",
"lint": "eslint --ext .ts --cache src/ __tests__/",
"prepublish": "yarn build",
"prepush": "yarn test",
"test": "yarn lint && yarn jest",
"watch": "rollup --config -w",
"lint-staged": {
"linters": {
"{src|__tests__}/**/*.ts": [
"git add"
]
}
}
}
}