-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.7 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.7 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@odoo/o-spreadsheet",
"version": "2.0.1",
"description": "A spreadsheet component",
"main": "index.js",
"scripts": {
"serve": "live-server --open=demo --watch=dist,demo",
"dev": "npm-run-all build --parallel server serve \"build:* -- --watch\"",
"server": "node tools/server/main.js",
"build:js": "tsc --module es6 --outDir dist/js --incremental",
"build:bundle": "rollup -c -m",
"build": "npm run build:js && npm run build:bundle",
"doc": "typedoc",
"precommit": "npm run prettier && npm run doc",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier {src/*.ts,src/**/*.ts,tests/*.ts,tests/**/*.ts,doc/*.md,demo/*.js} --write",
"check-formatting": "prettier {src/*.ts,src/**/*.ts,tests/*.ts,tests/**/*.ts,doc/*.md,demo/*.js} --check",
"dist": "tsc --module es6 --outDir dist/js && npm run build:bundle",
"prepare": "husky install"
},
"browserslist": [
"last 1 Chrome versions"
],
"keywords": [
"owl",
"spreadsheet",
"odoo"
],
"author": "Gery Debongnie",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/chart.js": "2.9.3",
"@types/jest": "^27.0.1",
"@types/node": "^13.13.23",
"babel-eslint": "^10.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"eslint": "^6.8.0",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"file-saver": "^2.0.5",
"fs": "^0.0.1-security",
"git-rev-sync": "^2.1.0",
"husky": "^7.0.4",
"jest": "^27.2.0",
"jest-environment-jsdom": "^27.2.0",
"jszip": "^3.6.0",
"lint-staged": "^12.1.2",
"live-server": "^1.2.1",
"mockdate": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "2.3.1",
"prettier-plugin-organize-imports": "^1.1.1",
"rollup": "^2.38.5",
"ts-jest": "^27.0.5",
"typedoc": "0.22.5",
"typedoc-plugin-markdown": "3.11.1",
"typescript": "^4.4.3",
"xml-formatter": "^2.4.0"
},
"prettier": {
"printWidth": 100
},
"dependencies": {
"@odoo/owl": "^1.4.10",
"bootstrap": "^4.6.0"
},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"verbose": false,
"testEnvironment": "jsdom",
"testRegex": "(/tests/.*(test|spec))\\.ts?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup/jest.setup.ts"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
}
},
"lint-staged": {
"{src/*.ts,src/**/*.ts,tests/*.ts,tests/**/*.ts,doc/*.md,demo/*.js}": "prettier --write"
}
}