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 8
/
package.json
84 lines (84 loc) · 2.52 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "fusion-plugin-service-worker",
"description": "A Fusion.js plugin",
"version": "2.0.0",
"license": "MIT",
"repository": "fusionjs/fusion-plugin-service-worker",
"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"
},
"devDependencies": {
"@babel/preset-react": "7.0.0",
"babel-eslint": "^10.0.0",
"create-universal-package": "3.4.6",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.9.1",
"eslint": "^5.9.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.2.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "7.12.4",
"flow-bin": "^0.92.1",
"fusion-cli": "^1.16.0",
"fusion-core": "^1.10.3",
"fusion-plugin-react-helmet-async": "^1.0.2",
"fusion-plugin-react-router": "^1.4.2",
"fusion-plugin-styletron-react": "^2.5.4",
"fusion-plugin-universal-events": "^1.3.2",
"fusion-react": "^1.3.7",
"fusion-test-utils": "^1.3.1",
"fusion-tokens": "^1.1.1",
"get-port": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"nyc": "^13.1.0",
"prettier": "^1.12.1",
"prop-types": "^15.6.2",
"puppeteer": "^1.14.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "5.1.1",
"redux": "^4.0.0",
"styletron-react": "^4.3.6",
"tape-cup": "4.7.1",
"unitest": "2.1.1"
},
"peerDependencies": {
"fusion-cli": "^1.16.0",
"fusion-core": "^1.10.3",
"fusion-tokens": "^1.1.1",
"react": "14.x - 16.x",
"redux": ">=3.7.2"
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint .",
"transpile": "npm run clean && cup build",
"build-test": "rm -rf dist-tests && cup build-tests",
"just-test": "node_modules/.bin/unitest --browser=dist-tests/browser.js --node=dist-tests/node.js",
"test": "npm run build-test && npm run just-test",
"cover": "npm run build-test && nyc npm run just-test",
"view-cover": "npm run cover && open coverage/index.html",
"prepublish": "npm run transpile"
},
"engines": {
"node": ">= 8.11.0"
},
"files": [
"dist",
"src"
],
"dependencies": {}
}