-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "single-spa-react",
"version": "2.10.0",
"description": "A single spa plugin for React apps",
"main": "lib/single-spa-react.js",
"scripts": {
"build": "rimraf lib parcel && mkdirp lib parcel && babel src/single-spa-react.js --source-maps --out-file lib/single-spa-react.js && babel src/parcel.js --source-maps --out-file parcel/index.js --module-id Parcel",
"test": "jest --config jest.json",
"watch-tests": "jest --watch --config jest.json",
"coverage": "jest --coverage --config jest.json",
"prepublish": "in-publish && yarn build || not-in-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeldenning/single-spa-react.git"
},
"keywords": [
"single",
"page",
"application",
"spa",
"react"
],
"author": "Joel Denning",
"license": "MIT",
"bugs": {
"url": "https://github.com/joeldenning/single-spa-react/issues"
},
"homepage": "https://github.com/joeldenning/single-spa-react#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-modules-amd": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.7.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"in-publish": "^2.0.0",
"jest": "^24.7.1",
"jest-cli": "^24.7.1",
"mkdirp": "^0.5.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3"
},
"peerDependencies": {
"react": "*"
}
}