-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.67 KB
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
63
64
65
66
67
68
69
70
71
{
"name": "gulp-markuplint",
"version": "0.1.1",
"author": "katashin",
"description": "Gulp plugin for markuplint",
"keywords": [
"gulp",
"markuplint",
"lint",
"linter",
"plugin"
],
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"homepage": "https://github.com/ktsn/gulp-markuplint",
"bugs": "https://github.com/ktsn/gulp-markuplint/issues",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/gulp-markuplint.git"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run test && npm run build",
"clean": "rm -rf lib",
"build": "tsc -p src",
"dev": "jest --watch",
"lint": "tslint -p . && prettier --list-different \"{src,scripts,test}/**/*.{js,ts}\"",
"format": "prettier --write \"{src,scripts,test}/**/*.{js,ts}\"",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "/test/.+\\.spec\\.(js|ts)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"globals": {
"ts-jest": {
"tsConfigFile": "test/tsconfig.json"
}
}
},
"devDependencies": {
"@types/jest": "^22.2.2",
"@types/through2": "^2.0.33",
"@types/vinyl": "^2.0.2",
"jest": "^22.4.3",
"markuplint": "^0.30.1",
"prettier": "1.11.1",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"tslint-config-ktsn": "^2.1.0",
"tslint-config-prettier": "^1.10.0",
"typescript": "^2.8.1",
"vinyl": "^2.2.0"
},
"dependencies": {
"through2": "^2.0.3"
},
"peerDependencies": {
"markuplint": "0.x"
}
}