-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "typesnitch",
"version": "0.3.3",
"description": "A Simple Type Sniffer for JS",
"main": "snitch.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:silent": "npm test -- --silent --noStackTrace",
"watch": "jest --watch --verbose",
"watchall": "jest --watchAll",
"lint": "npx eslint . --ext .js",
"lint:fix": "npx eslint . --ext .js --fix",
"clear": "rimraf dist",
"build": "node build.js",
"publish": "npm run build && npm publish dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfeyx/typesnitch.git"
},
"homepage": "https://typesnitch.dev",
"keywords": [
"types",
"type sniffer",
"type detector",
"type detection",
"type checking",
"type snitch",
"check types",
"type checker",
"type check"
],
"author": "Markus Feiks",
"license": "MIT",
"bugs": {
"url": "https://github.com/mfeyx/typesnitch/issues"
},
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^7.3.1",
"eslint-plugin-jest": "^23.17.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"kind-of": "^6.0.3",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"timeit-js": "0.0.10"
},
"husky": {
"hooks": {
"pre-push": "npm test && npm run lint:fix"
}
}
}