-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "yace",
"version": "0.0.6",
"description": "tiny text editor with plugins",
"type": "module",
"main": "dist/index.js",
"module": "dist/esm/index.esm.js",
"files": [
"dist/**/*"
],
"scripts": {
"test": "c8 node test/test.js --lines 99 --functions 99 --branches 95",
"report": "c8 report --reporter=text-lcov > coverage.txt ",
"build": "rm -rf ./dist && rollup -c",
"prettier:write": "prettier --write '{src,examples,test}/**/*'",
"prettier:check": "prettier --check '{src,examples,test}/**/*'",
"release": "npx standard-version"
},
"keywords": [
"text-editor",
"editor",
"code-editor"
],
"author": "Peter Solopov <peter@solopov.dev>",
"homepage": "https://github.com/petersolopov/yace",
"bugs": "https://github.com/petersolopov/yace/issues",
"repository": {
"type": "git",
"url": "https://github.com/petersolopov/yace"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"c8": "^7.2.0",
"prettier": "^2.0.5",
"rollup": "^2.14.0",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-terser": "^6.1.0",
"undom": "^0.4.0",
"zora": "^4.0.0"
},
"dependencies": {}
}