-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "permissions-system-sim",
"version": "1.0.0",
"private": "true",
"description": "A payground for simulationg flows in the consento permissions system",
"main": "index.js",
"scripts": {
"test": "ts-node ./test",
"lint": "eslint --ext .js,.ts . ",
"coverage": "c8 --reporter=html --reporter=lcov npm run test",
"build": "tsc",
"protobuf": "protocol-buffers feeditem.proto -o src/feeditem.js",
"postinstall": "husky install"
},
"eslintConfig": {
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"eslintIgnore": [
"node_modules/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/permissions-system-sim.git"
},
"author": "rangermauve <[email protected]> (https://mauve.moe/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/consento-org/permissions-system-sim/issues"
},
"homepage": "https://github.com/consento-org/permissions-system-sim#readme",
"dependencies": {
"@consento/hlc": "^2.1.0",
"@types/node": "^14.14.25"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.2",
"c8": "^7.5.0",
"eslint": "^7.19.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"fresh-tape": "^5.1.1",
"husky": "^4.3.8",
"protocol-buffers": "^4.2.0",
"protocol-buffers-schema": "^3.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}