-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.37 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.37 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
{
"name": "obsidian-flash",
"version": "0.6.0",
"description": "Flash navigation plugin - jump to links and text using keyboard hints with Unicode support",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js",
"test": "jest",
"test:unit": "jest --testPathPattern=test/unit",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:e2e": "wdio run ./test/e2e/wdio.conf.mts",
"deploy": "npm run build && cp main.js manifest.json styles.css ~/db2/.obsidian/plugins/obsidian-flash/"
},
"keywords": [],
"author": "MrJackphil",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^30.0.0",
"@types/node": "^17.0.21",
"@wdio/cli": "^9.23.0",
"@wdio/local-runner": "^9.23.0",
"@wdio/mocha-framework": "^9.23.0",
"@wdio/spec-reporter": "^9.20.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"rollup": "^2.70.1",
"ts-jest": "^29.4.6",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"wdio-obsidian-reporter": "^2.2.0",
"wdio-obsidian-service": "^2.2.0"
}
}