-
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.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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": "unly-utils-react",
"version": "1.0.0",
"description": "Library of tools to help and improve react development",
"main": "index.js",
"author": "unlyEd",
"license": "MIT",
"repository": "https://github.com/UnlyEd/unly-utils-react.git",
"bugs": {
"url": "https://github.com/UnlyEd/unly-utils-react/issues"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>enzyme.config.js"
},
"homepage": "https://github.com/UnlyEd/unly-utils-react",
"scripts": {
"lint": "eslint . --cache --fix",
"test:once": "NODE_ENV=test jest",
"test": "NODE_ENV=test jest",
"coverage": "NODE_ENV=test jest --coverage",
"build": "babel src --out-file index.js && babel src --out-dir lib"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.7.1",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14",
"eslint-plugin-react": "7.12.3",
"jest": "23.6.0",
"react": "16.7.0",
"react-dom": "16.7.0"
},
"peerDependencies": {
"react": ">= 15.x.x",
"react-dom": ">= 15.x.x"
}
}