forked from BMKeros/odoo-webkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "odoo-webkit",
"version": "1.6.0",
"description": "Tools for development in web for odoo",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"build": "babel src/ --out-dir lib/",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BMKeros/odoo-webkit.git"
},
"keywords": [
"odoo",
"js",
"web",
"website",
"orm"
],
"author": {
"name": "Israel Lugo (Hostelix)",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bmkeros/odoo-webkit/issues"
},
"homepage": "https://github.com/bmkeros/odoo-webkit#readme",
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0"
}
}