-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "nova-react-bridge",
"version": "0.3.1",
"main": "lib/index.js",
"license": "MIT",
"description": "Nova Bridge for React",
"author": "Felipe Guizar Diaz <felipegaiacharly@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:ara-framework/nova-react-bridge.git"
},
"scripts": {
"prepublish": "npm run build",
"build": "babel src -d lib",
"lint": "eslint src/**/*.js",
"test": "jest ./src"
},
"keywords": [
"react",
"hypernova",
"nova",
"bridge"
],
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-preset-airbnb": "^4.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16.3": "^1.7.2",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"react-dom": "^16.13.0",
"semantic-release": "^17.0.4"
},
"dependencies": {
"babel-jest": "^27.0.6",
"jest": "^25.1.0",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"uuid": "^7.0.1"
}
}