-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.65 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.65 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
{
"name": "officescripts-unit-testing-framework",
"version": "1.0.0",
"description": "Lightweight, extensible unit testing framework for Office Scripts, inspired by libraries like JUnit. Provides basic assertion capabilities and defines the structure for executing test cases. Designed for easy integration and extension within Office Scripts projects.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"acorn": "^8.14.1",
"acorn-walk": "^8.3.4",
"arg": "^4.1.3",
"create-require": "^1.1.1",
"diff": "^4.0.2",
"make-error": "^1.3.6",
"undici-types": "^6.21.0",
"v8-compile-cache-lib": "^3.0.1",
"yn": "^3.1.1"
},
"devDependencies": {
"jsdoc": "^4.0.4",
"prettier": "^3.5.3",
"strip-code": "^1.1.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.5",
"typedoc-theme-hierarchy": "^6.0.0",
"typescript": "^5.8.3"
},
"scripts": {
"setup": "npm install && npx tsc --init",
"test": "npx ts-node --project tsconfig.json wrappers/main-wrapper.ts",
"debug": "npx ts-node --project tsconfig.test.json wrappers/main-wrapper.ts --debug",
"doc:ts:install": "npm install --save-dev typedoc",
"doc:ts:run": "npx typedoc src/unit-test-framework.ts --out docs/typedoc --readme none --tsconfig tsconfig.json --theme default",
"cleanup-branches": "git branch --merged main | grep -v 'main$' | grep -v '^\\*' | xargs -n 1 git branch -d"
},
"keywords": [
"office-scripts",
"testing",
"unit-testing",
"testing-framework",
"testing-library",
"typescript",
"unit-testing-framework"
],
"author": "David Leal <dleal67@gmail.com>",
"license": "MIT"
}