-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "entente",
"version": "0.5.0",
"description": "A convention testing framework for JavaScript/TypeScript",
"main": "lib/index.js",
"author": "Kitson Kelly <me@kitsonkelly.com>",
"license": "MIT",
"repository": "https://github.com/h-o-t/entente",
"engines": {
"node": ">=12.18.0"
},
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf lib",
"lint": "eslint ./{src,tests}/**/*.ts",
"preversion": "yarn build",
"test": "./test.js"
},
"types": "lib/index.d.ts",
"dependencies": {
"assertion-error": "1.1.0",
"assertion-error-formatter": "3.0.0",
"chalk": "4.1.0",
"diff": "4.0.2",
"ts-morph": "8.1.0",
"tslib": "2.0.1"
},
"devDependencies": {
"@types/chai": "4.2.12",
"@types/node": "12.12.42",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"chai": "4.2.0",
"eslint": "7.7.0",
"eslint-config-airbnb-typescript-prettier": "3.1.0",
"husky": "4.2.5",
"prettier": "2.1.1",
"pretty-quick": "3.0.0",
"rimraf": "3.0.2",
"ts-node": "9.0.0",
"typescript": "4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}