-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.83 KB
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
{
"name": "scribing",
"version": "1.9.0",
"description": "Model for collaborative rich text editing",
"main": "./dist/scribing.js",
"typings": "./dist/scribing.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf temp lib && npm run lint && tsc",
"build": "rollup -c",
"build:docs": "tsc",
"postbuild": "npm test && npm run postbuild:docs",
"postbuild:docs": "api-extractor run --local && api-documenter markdown --input temp --output docs",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mwikstrom/scribing.git"
},
"author": "Mårten Wikström",
"license": "ISC",
"bugs": {
"url": "https://github.com/mwikstrom/scribing/issues"
},
"homepage": "https://github.com/mwikstrom/scribing#readme",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@formatjs/icu-messageformat-parser": "^2.3.0",
"@microsoft/api-documenter": "^7.21.5",
"@microsoft/api-extractor": "^7.34.4",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^29.4.4",
"@types/seedrandom": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^29.5.0",
"paratype": "^1.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"seedrandom": "^3.0.5",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"xml-js": "^1.6.11"
},
"peerDependencies": {
"@formatjs/icu-messageformat-parser": "2.x",
"paratype": "1.x",
"xml-js": "1.x"
}
}