-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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": "@pundit/anchoring",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"test:watch": "mocha -r ts-node/register --watch --watch-files src, tests/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/net7/pundit-anchoring.git"
},
"author": "Net7",
"license": "MIT",
"bugs": {
"url": "https://github.com/net7/pundit-anchoring/issues"
},
"homepage": "https://github.com/net7/pundit-anchoring#readme",
"dependencies": {
"diff-match-patch": "^1.0.5"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/jsdom": "^16.2.4",
"@types/mocha": "^8.0.3",
"@types/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"chai": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.0",
"jsdom": "^16.4.0",
"lint-staged": "^10.4.0",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"files": [
"dist"
]
}