-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.25 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
{
"name": "@list-positions/formatting",
"version": "2.0.0",
"description": "Inline formatting for a list, e.g., collaborative rich text",
"author": "Matthew Weidner",
"license": "MIT",
"bugs": {
"url": "https://github.com/mweidner037/list-positions-formatting/issues"
},
"homepage": "https://github.com/mweidner037/list-positions-formatting/tree/master/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mweidner037/list-positions-formatting.git"
},
"keywords": [
"formatting",
"rich text",
"collaboration",
"CRDT"
],
"module": "build/esm/index.js",
"browser": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"main": "build/commonjs/index.js",
"files": [
"/build",
"/src"
],
"directories": {
"lib": "src"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"dependencies": {
"list-positions": "^2.0.0",
"maybe-random-string": "^1.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/seedrandom": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"chai": "^4.3.7",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"seedrandom": "^3.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^4.9.5"
},
"scripts": {
"prepack": "npm run clean && npm run build && npm run test",
"build": "npm-run-all build:*",
"build:ts": "tsc -p tsconfig.json && tsc -p tsconfig.commonjs.json",
"test": "npm-run-all test:*",
"test:lint": "eslint --ext .ts,.js .",
"test:unit": "TS_NODE_PROJECT='./tsconfig.dev.json' mocha",
"test:format": "prettier --check .",
"coverage": "npm-run-all coverage:*",
"coverage:run": "nyc npm run test:unit",
"coverage:open": "open coverage/index.html > /dev/null 2>&1 &",
"fix": "npm-run-all fix:*",
"fix:format": "prettier --write .",
"docs": "typedoc --options typedoc.json src/index.ts",
"clean": "rm -rf build docs coverage .nyc_output"
}
}