-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.85 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
{
"name": "@solid/access-control-policy",
"version": "0.1.3",
"description": "Implementation of the Access Control Policy specification.",
"license": "MIT",
"repository": "https://github.com/solid/access-control-policy",
"bugs": "https://github.com/solid/access-control-policy/issues",
"homepage": "https://github.com/solid/access-control-policy#readme",
"keywords": [
"ACP",
"Access Control",
"Policy",
"Matcher",
"ACL",
"Solid"
],
"contributors": [
"Matthieu Bosquet <[email protected]> (https://github.com/matthieubosquet)"
],
"main": "dist/mod.js",
"types": "dist/mod.d.ts",
"files": [
"dist"
],
"scripts": {
"audit": "npm audit --production --audit-level=moderate",
"build": "tsc",
"lint": "npm run lint:eslint -- --cache --fix && npm run lint:prettier -- --write",
"lint:ci": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --ignore-path .gitignore .",
"lint:prettier": "prettier --ignore-path .gitignore '**/*.{css,html,json,md,mdx,yml}'",
"prepublishOnly": "npm run audit && npm ci --ignore-scripts && npm run build && npm run test",
"start": "npm run build -- --watch",
"test": "npm run test:unit",
"test:e2e": "",
"test:unit": "jest --config .jestrc.js"
},
"devDependencies": {
"@solid/eslint-config-base": "^0.5.0",
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}