-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 KB
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
{
"name": "react-micro-machine",
"version": "0.1.6-SNAPSHOT",
"description": "Higher Order React Components for loading remote React Components",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jdnarvaez/react-micro-machine"
},
"keywords": [
"React",
"Remote"
],
"author": "Juan Narvaez",
"scripts": {
"prepare": "npm run build",
"build": "npm run compile",
"clean:all": "rimraf package-lock.json && rimraf ./node_modules",
"clean:install": "npm run clean:all && npm install",
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rimraf ./lib",
"compile:build": "babel src --out-dir lib --copy-files"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"rimraf": "^3.0.0"
}
}