-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@blinkk/selective-edit",
"version": "3.3.0",
"license": "MIT",
"homepage": "https://blinkk.github.com/selective-edit",
"description": "Selective structured text editor.",
"keywords": [
"structured",
"document",
"ui",
"editor"
],
"bugs": {
"url": "https://github.com/blinkk/selective-edit/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/blinkk/selective-edit.git"
},
"directories": {
"example": "example"
},
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"scripts": {
"check": "gts check",
"clean": "gts clean",
"compile": "concurrently \"tsc\" \"yarn run sass:build\" \"webpack --config webpack.prod.js\"",
"coverage": "codecov",
"dev": "concurrently \"npx ava --watch\" \"tsc --watch\"",
"docs": "typedoc",
"fix": "node ./node_modules/eslint/bin/eslint --fix src/**/*.ts",
"lint": "npx eslint src/ts/**/*.ts",
"prepare": "yarn run compile",
"prepublish": "tsc",
"sass:build": "sass --no-source-map ./src/sass/:./dist/css --style compressed",
"sass:watch": "sass --watch --no-source-map ./src/sass/:./dist/css --style compressed",
"serve": "concurrently \"webpack serve --config webpack.dev.js\" \"yarn run sass:watch\"",
"test": "nyc ava",
"test-ci": "nyc --reporter=lcov ava && codecov"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"src/**/*.test.ts"
],
"require": [
"ts-node/register"
]
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/json-stable-stringify": "^1.0.33",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.merge": "^4.6.6",
"@types/marked": "^4.0.1",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"ava": "^3.14.0",
"codecov": "^3.8.3",
"concurrently": "^6.4.0",
"eslint": "^8.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-class-members": "^1.14.1",
"gts": "^3.1.0",
"nyc": "^15.1.0",
"sass": "^1.44.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"eslint-plugin-node": "^11.1.0",
"json-stable-stringify": "^1.0.1",
"lit-html": "^2.0.2",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2"
}
}