-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
72 lines (72 loc) · 1.73 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
{
"name": "axios-actions",
"version": "4.0.2",
"description": "Bundle endpoints as callable, reusable services",
"types": "dist/main.d.ts",
"main": "dist/axios-actions.js",
"module": "dist/axios-actions.esm.js",
"jsnext:main": "dist/axios-actions.esm.js",
"files": [
"dist/*"
],
"scripts": {
"dev": "rollup -c build/rollup.js -w",
"build": "rollup -c build/rollup.js",
"demo": "cd demo && npm run dev",
"test": "jest --watchAll --verbose",
"unit": "jest --config jest.config.js --coverage"
},
"author": "Dave Stewart <[email protected]>",
"homepage": "https://github.com/davestewart/axios-actions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/davestewart/axios-actions.git"
},
"keywords": [
"axios",
"rest",
"restful",
"api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/davestewart/axios-actions/issues"
},
"dependencies": {
"deepmerge": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"axios": "^0.18.0",
"babel-jest": "^23.6.0",
"jest": "^23.6.0",
"node-sass": "^4.10.0",
"node-fetch": "^2.3.0",
"rollup-plugin-buble": "^0.19.4",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-typescript2": "0.14.0",
"rollup-plugin-uglify": "^3.0.0",
"ts-jest": "^23.10.5",
"typescript": "2.9.1"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}