-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.65 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.65 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
63
{
"name": "msagl",
"version": "0.0.46",
"description": "MSAGL in JavaScript",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/msagljs"
},
"workspaces": [
"modules/*",
"examples/*",
"website"
],
"license": "MIT",
"scripts": {
"test": "jest",
"build": "rm -f modules/*/*.tsbuildinfo && rm -rf modules/*/dist && rm -f modules/*/dist.min.js && lerna run build",
"publish": "lerna run build && lerna publish",
"typecheck": "tsc",
"eslint": "eslint modules/core/src",
"prettier": "prettier --write modules/core/src",
"docs": "cd website && yarn start",
"build:docs": "cd website && yarn build"
},
"resolutions": {
"apache-arrow": "8.0.0",
"@types/flatbuffers": "1.10.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/collections": "^5.1.2",
"@types/jest": "^29.0.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-eslint": "^10.1.0",
"esbuild": "^0.25.0",
"esbuild-plugin-external-global": "^1.0.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^4.3.8",
"jest": "^29.0.4",
"lerna": "^8.0.1",
"lint-staged": "10.5.3",
"node-gyp": "^8.4.1",
"prettier": "^2.6.0",
"ts-jest": "^29.0.4",
"typescript": "^4.6.3",
"typescript-json-schema": "^0.55.0",
"xml-writer": "^1.7.0"
},
"lint-staged": {
"modules/**/*.{js,ts}": [
"yarn eslint",
"yarn prettier"
]
},
"dependencies": {
"@types/smallest-enclosing-circle": "^1.0.3",
"madge": "^6.0.0",
"yarn": "^1.22.19"
}
}