forked from AckeeCZ/axesor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "axesor",
"description": "Axesor is tiny package for working with ACLs",
"version": "0.1.7",
"author": "Štefan Prokop <[email protected]>",
"contributors": [
"Štefan Prokop <[email protected]>",
"Michal Vlasák <[email protected]>",
"Jaroslav Šmolík <[email protected]>"
],
"main": "./dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/axesor"
},
"license": "MIT",
"keywords": [],
"scripts": {
"build": "tsc",
"test": "NODE_PATH=src jest",
"test:watch": "tsc-watch --onSuccess \"npm run test\"",
"test:coverage": "npm run test -- --collectCoverage",
"lint": "tslint -t codeFrame -p .",
"prepare": "npm run build",
"docs": "typedoc --options typedoc.json src/lib/*.ts",
"check": "npm-check -i app -i errors -i config -i index & exit 0"
},
"dependencies": {
"accesscontrol": "^2.2.1",
"jsonpath": "^1.0.1",
"ramda": "^0.28.0"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/jsonpath": "^0.2.0",
"@types/ramda": "0.28.1",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"prettier-config-ackee": "^0.0.13",
"ts-jest": "^24.0.0",
"tsc-watch": "^4.6.2",
"tslint-config-ackee": "^0.3.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
}
}