generated from stroiman/obsidian-sample-plugin-with-tests
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.82 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
{
"name": "obsidian-sample-plugin",
"version": "0.11.2",
"description": "Obsidian plugin to publish obsidian notes to DEV",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && npm run test && eslint . && node esbuild.config.mjs production",
"version:update-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --config changelog-config.js && git add CHANGELOG.md",
"version:update-manifest": "node version-bump.mjs && git add manifest.json versions.json",
"version": "npm run version:update-changelog && npm run version:update-manifest",
"test": "NODE_OPTIONS='--import tsx' mocha -R min --forbid-only",
"test:watch": "NODE_OPTIONS='--import tsx' mocha -w -R min"
},
"mocha": {
"extension": "ts,js",
"spec": "test/**/*.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-like": "^1.1.3",
"@types/fetch-mock": "^7.3.8",
"@types/mocha": "^10.0.7",
"@types/node": "^16.18.103",
"@types/node-fetch": "^2.6.11",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"builtin-modules": "3.3.0",
"chai": "^4.4.1",
"chai-as-promised": "^8.0.0",
"chai-like": "^1.1.1",
"conventional-changelog": "^6.0.0",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "0.17.3",
"eslint": "^9.7.0",
"fetch-mock": "^9.11.0",
"form-data": "^4.0.0",
"globals": "^15.8.0",
"mocha": "^10.7.0",
"node-fetch": "^3.3.2",
"obsidian": "latest",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"tslib": "2.4.0",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
}
}