-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.71 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
{
"name": "fnfy",
"version": "0.2.1",
"description": "A small set of tools to ease the usage of React without JSX.",
"author": "Lars",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/Drawbotics/fnfy.git"
},
"bugs": {
"url": "https://github.com/Drawbotics/fnfy/issues"
},
"homepage": "https://github.com/Drawbotics/fnfy#readme",
"main": "dist/fnfy.js",
"module": "lib/index.js",
"scripts": {
"clean": "rimraf dist && rimraf lib",
"lint": "eslint --ext js,jsx --format node_modules/eslint-formatter-pretty src/",
"build:umd": "NODE_ENV=production webpack --config webpack.config.js",
"build:module": "NODE_ENV=production babel src --out-dir lib/",
"build": "npm run clean && npm run build:umd && npm run build:module",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "16.8.x"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@drawbotics/check-env": "^1.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"better-webpack-progress": "^1.1.0",
"eslint": "^5.16.0",
"eslint-formatter-pretty": "^2.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"react": "16.8.x",
"rimraf": "^2.6.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-stylish": "^0.1.8"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0"
}
}