2019-01-16 11:28:05 +01:00
|
|
|
{
|
|
|
|
|
"name": "web-core",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"description": "Core Utils for Odoo Web Client",
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"test": "jest",
|
2019-01-16 13:19:58 +01:00
|
|
|
"test:watch": "jest --watch",
|
|
|
|
|
"bundle:core": "tsc -m es6 --lib es2017,dom --target esnext --outdir dist src/bundles/core.ts && rollup dist/bundles/core.js --file dist/bundle-core.js --format iife",
|
2019-01-17 10:49:57 +01:00
|
|
|
"bundle:core:watch": "npm run bundle:core -- --watch",
|
|
|
|
|
"demo:build": "cp -r demo/ dist/demo && npm run demo:build:js",
|
|
|
|
|
"demo:build:js": "tsc -m amd --lib es2017,dom --target esnext --outfile dist/demo/main.js demo/src/main.ts",
|
|
|
|
|
"predemo:watch": "npm run demo:build",
|
|
|
|
|
"demo:watch": "npm run demo:build:js -- --watch",
|
|
|
|
|
"demo:serve": "live-server dist/demo/"
|
2019-01-16 11:28:05 +01:00
|
|
|
},
|
|
|
|
|
"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",
|
2019-01-16 13:19:58 +01:00
|
|
|
"rollup": "^1.1.0",
|
|
|
|
|
"rollup-plugin-typescript2": "^0.19.0",
|
|
|
|
|
"source-map-support": "^0.5.10",
|
2019-01-16 11:28:05 +01:00
|
|
|
"ts-jest": "^23.10.5",
|
2019-01-17 10:49:57 +01:00
|
|
|
"live-server": "^1.2.1",
|
2019-01-16 11:28:05 +01:00
|
|
|
"typescript": "^3.2.2"
|
2019-01-17 17:13:46 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"snabbdom": "^0.7.3"
|
2019-01-16 11:28:05 +01:00
|
|
|
}
|
|
|
|
|
}
|