-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "@susisu/mte-kernel",
"version": "2.1.1",
"description": "The text editor independent part of markdown-table-editor",
"keywords": [
"markdown",
"table",
"text",
"editor",
"format",
"formatter"
],
"files": [
"lib",
"dist"
],
"main": "dist/mte-kernel.js",
"module": "dist/mte-kernel.mjs",
"scripts": {
"lint": "eslint lib test",
"fix": "eslint lib test --fix",
"test": "mocha --require @babel/register",
"cover": "nyc -r html -r text yarn test",
"build": "rollup -c",
"prepublishOnly": "run-s clean lint test build",
"clean": "rimraf .nyc_output coverage dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/susisu/mte-kernel.git"
},
"author": "Susisu <[email protected]> (https://github.com/susisu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/susisu/mte-kernel/issues"
},
"homepage": "https://github.com/susisu/mte-kernel#readme",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/register": "^7.12.1",
"chai": "^4.1.2",
"eslint": "^7.14.0",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.33.3"
},
"dependencies": {
"meaw": "^5.0.0"
}
}