-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "owl-todo-app",
"version": "0.0.1",
"description": "Todo App",
"main": "src/index.html",
"homepage": "http://jpp-odoo.github.io/owl-todo-app",
"scripts": {
"test": "jest",
"build": "webpack --mode production",
"dev": "webpack-dev-server --mode development",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"author": "Jorge Pinna Puissant",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"css-loader": "^5.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"jest-transform-stub": "^2.0.0",
"regenerator-runtime": "^0.13.3",
"serve": "^11.3.0",
"style-loader": "^2.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.2"
},
"dependencies": {
"@odoo/owl": "^1.2.4"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
},
"jest": {
"verbose": false,
"testRegex": "(/tests/.*(test|spec))\\.js?$",
"moduleFileExtensions": [
"js"
],
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
}
}
}