initial commit

This commit is contained in:
Géry Debongnie
2019-01-16 11:28:05 +01:00
commit 0f3b2d10da
10 changed files with 1293 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "web-core",
"version": "0.1.0",
"description": "Core Utils for Odoo Web Client",
"main": "index.js",
"scripts": {
"build": "tsc -m amd --lib es2017,dom --target esnext --outfile dist/bundle.js",
"build:watch": "tsc --watch -m amd --lib es2017,dom --target esnext --outfile dist/bundle.js",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ged-odoo/web-core.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ged-odoo/web-core/issues"
},
"homepage": "https://github.com/ged-odoo/web-core#readme",
"devDependencies": {
"@types/jest": "^23.3.12",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2"
}
}