-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.88 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
64
65
66
{
"name": "@multi-user-domain/mud-lib",
"version": "1.3.0",
"main": "dist/cjs/index.js",
"module": "dist/es/index.es.js",
"author": "Matt Tennison <matt@matttennison.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.15",
"@rdfjs/types": "^1.0.1",
"@types/n3": "^1.10.0",
"babel-jest": "^27.0.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": ">=6",
"jest": "^27.0.6",
"lint-staged": ">=10",
"prettier": "2.3.2",
"rollup": "^2.55.1",
"rollup-plugin-polyfill-node": "^0.7.0",
"semantic-release": "^17.4.4",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"prepare": "husky install && yarn build",
"test": "jest",
"prepublishOnly": "yarn lint",
"cm": "cz",
"semantic-release": "semantic-release"
},
"peerDependencies": {},
"lint-staged": {
"*.{js,jsx,css,md,ts,tsx}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Multi-User-Domain/mud-lib.git"
},
"dependencies": {
"@inrupt/lit-generated-vocab-common": "^0.3.11",
"@inrupt/solid-client": "^0.4.0",
"@rdfjs/dataset": "1.1.1"
}
}