-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "note-refactor-obsidian",
"version": "1.8.2",
"description": "Copy a text selection into a new note in Obsidian",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.11",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^29.5.5",
"@types/node": "^14.17.3",
"cross-env": "^7.0.3",
"ignore-styles": "^5.0.1",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"nyc": "^15.1.0",
"obsidian": "latest",
"rollup": "^2.52.1",
"rollup-plugin-copy": "^3.4.0",
"ts-node": "^9.1.1",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
}
}