This repository has been archived by the owner on May 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
{
"name": "fusion-plugin-rpc",
"description": "Fetch data on the server and client with an RPC style interface.",
"version": "2.4.1",
"repository": "fusionjs/fusion-plugin-rpc",
"files": [
"dist",
"src"
],
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"browser": {
"./dist/index.js": "./dist/browser.es5.js",
"./dist/index.es.js": "./dist/browser.es5.es.js"
},
"es2015": {
"./dist/browser.es5.es.js": "./dist/browser.es2015.es.js"
},
"es2017": {
"./dist/browser.es5.es.js": "./dist/browser.es2017.es.js",
"./dist/browser.es2015.es.js": "./dist/browser.es2017.es.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"just-compare": "^1.3.0",
"just-map-object": "^1.2.0",
"koa-bodyparser": "4.2.1",
"rollup": "^0.67.3"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"create-universal-package": "^3.4.7",
"eslint": "5.13.0",
"eslint-config-fusion": "^4.0.0",
"eslint-plugin-cup": "^2.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.91.0",
"fusion-core": "1.10.2",
"fusion-plugin-universal-events": "^1.3.0",
"fusion-test-utils": "^1.3.0",
"fusion-tokens": "^1.1.1",
"mock-req": "^0.2.0",
"nyc": "^13.1.0",
"prettier": "^1.15.2",
"sinon": "^7.1.1",
"tape-cup": "4.7.1",
"unitest": "2.1.1"
},
"peerDependencies": {
"fusion-core": "^1.10.2",
"fusion-plugin-universal-events": "^1.0.1",
"fusion-tokens": "^1.0.1"
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint . --ignore-path .gitignore",
"build": "cup build",
"build-tests": "cup build-tests",
"just-test": "unitest --browser=dist-tests/browser.js --node=dist-tests/node.js",
"test": "npm run build-tests && npm run just-test",
"cover": "npm run build-tests && nyc npm run just-test",
"transpile": "npm run clean && npm run build",
"prepublish": "npm run transpile"
},
"engines": {
"node": ">= 8.9.0"
},
"license": "MIT"
}