-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
75 lines (75 loc) · 2.15 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@microsoft/connected-workbooks",
"version": "3.2.0-beta",
"description": "Microsoft backed, Excel advanced xlsx workbook generation JavaScript library",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/workbookManager.d.ts",
"dist/types.d.ts",
"dist/index.d.ts"
],
"scripts": {
"build": "tsc",
"build-webpack-prod": "webpack --mode=production --node-env=production",
"build-webpack-dev": "webpack --mode=development --node-env=development",
"test": "tsc --project tsconfig.test.json && jest",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" --config .prettierrc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/connected-workbooks.git"
},
"keywords": [
"Power Query",
"Excel",
"Office",
"Workbook",
"Refresh",
"Table",
"xlsx"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/connected-workbooks/issues"
},
"homepage": "https://github.com/microsoft/connected-workbooks#readme",
"dependencies": {
"base64-js": "^1.5.1",
"buffer": "^6.0.3",
"jszip": "^3.5.0",
"uuid": "^9.0.0",
"@xmldom/xmldom": "~0.8.4",
"xmldom-qsa": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/base64-js": "^1.3.0",
"@types/jest": "^26.0.24",
"@types/jszip": "^3.4.1",
"@types/uuid": "^9.0.2",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"@webpack-cli/generators": "^3.0.7",
"babel-jest": "^27.0.6",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"nyc": "^15.1.0",
"prettier": "2.3.2",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.9.5",
"webpack": "^5.86.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4"
}
}