-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.16 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
{
"name": "@redtea/async-mirror",
"version": "0.1.2",
"description": "This library helps to represent any state of an asynchronous action as an object",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "types/index.d.ts",
"sideEffects": false,
"files": [
"dist/",
"types/",
"README.md"
],
"scripts": {
"clean": "rm -rf dist",
"build-dist": "rollup -c",
"build": "npm run clean && npm run build-dist",
"test": "mocha 'test/**/*.spec.js' -colors"
},
"repository": {
"type": "git",
"url": "https://github.com/org-redtea/async-mirror.git"
},
"keywords": [
"state",
"async",
"asynchronous",
"promise",
"manager",
"async",
"react",
"redux",
"vue",
"vuex",
"tools",
"resolver",
"resolve",
"fetching",
"fetch",
"lib",
"data",
"loading"
],
"author": "Kirill Khoroshilov <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"chai": "4.2.0",
"mocha": "6.2.2",
"rollup": "1.25.0",
"rollup-plugin-babel": "4.3.3"
}
}