-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "inferno-async-component",
"version": "1.1.5",
"description": "Bridge between inferno-js and webpack's dynamic import. With this you can asynchronously load your components.",
"main": "lib/index.js",
"files": [
"lib/**/*",
"README.md",
"LICENSE",
"package.json"
],
"peerDependencies": {
"inferno": "^7.0.2",
"inferno-create-element": "^7.0.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-plugin-inferno": "^6.0.2",
"babel-preset-minify": "^0.5.0",
"eslint": "^5.8.0",
"eslint-plugin-inferno": "^7.11.0",
"prettier": "^1.14.3"
},
"scripts": {
"reinstallNodeModules": "rm -rf node_modules package-lock.json && npm i",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint src/index.js --fix",
"prettier": "prettier \"src/**/*.js\" --write",
"lint": "npm run prettier && npm run eslint",
"build": "npm run lint && rm -rf lib && mkdir lib && node build.js"
},
"repository": {
"type": "git",
"url": "git@gh_personal:aprilmintacpineda/inferno-async-component.git"
},
"keywords": [
"inferno",
"inferno-js",
"async-components",
"code-splitting",
"code-split-component",
"webpack-dynamic-imports",
"dynamic-imports"
],
"author": "April Mintac Pineda",
"license": "MIT"
}