-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
57
58
59
60
61
62
{
"name": "@fchauvel/quick-check",
"version": "0.2.0",
"commit": null,
"description": "Internal DSL to check and convert JSON structures",
"main": "dist/",
"types": "dist/",
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "npm run build",
"eslint": "eslint ./**/*.{ts,json} --fix",
"tslint": "tslint -p tsconfig.json --fix",
"lint": "npm run eslint && npm run tslint",
"remark": "remark . -o"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fchauvel/quick-check.git"
},
"keywords": [
"JSON",
"YAML",
"schemas",
"type-checking",
"convertion"
],
"author": "Franck Chauvel",
"license": "MIT",
"bugs": {
"url": "https://github.com/fchauvel/quick-check/issues"
},
"homepage": " https://fchauvel.github.io/quick-check/index.html",
"devDependencies": {
"@types/jest": "^24.9.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"remark-cli": "^7.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"ts-jest": "^25.0.0"
},
"dependencies": {
"@types/node": "^13.1.8",
"typescript": "^3.7.5"
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"modulePaths": [
"."
],
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}