-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "typescript-transform-unspec",
"version": "0.0.0-dev",
"license": "MIT",
"description": "Typescript transform plugin removes spec definition from source file",
"main": "index.js",
"typings": "index.d.ts",
"author": "2019",
"keywords": [
"typescript-transformer",
"typescript-plugin",
"typescript-transform-plugin",
"typescript-compiler"
],
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/unlight/typescript-transform-unspec.git"
},
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:cov && npm run typecov",
"test:r": "jest --passWithNoTests --runInBand --verbose",
"test:w": "jest --passWithNoTests --runInBand --watch",
"test:cov": "npm run test:r -- --collectCoverage",
"test:d": "node --inspect-brk node_modules/jest/bin/jest.js --passWithNoTests --runInBand --testMatch \"<rootDir>/src/**/*.spec.ts\"",
"typecov": "type-coverage --detail",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"tsclint:w": "npm run tsclint -- --watch",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint": "eslint src --ext ts",
"eslint:fix": "eslint src --ext ts --fix",
"tslint:fix": "tslint -p tsconfig.json --fix",
"lint:w": "run-p tsclint:w eslint:w",
"semantic-release": "semantic-release",
"prepublishOnly": "sed -i -e 's/devDependencies/_devDependencies/g' package.json",
"copySource": "cp -rv src dist && find dist/src -name '*.spec.ts' | xargs rm -f",
"build": "sh Taskfile build",
"commit": "git-cz"
},
"dependencies": {},
"peerDependencies": {
"typescript": ">=2.9"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^7.0.0-beta.2",
"@semantic-release/git": "^7.1.0-beta.3",
"@semantic-release/github": "^5.4.0",
"@semantic-release/npm": "^5.2.0-beta.6",
"@semantic-release/release-notes-generator": "^7.2.0",
"@types/jest": "^24.0.14",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin-tslint": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-only-warn": "^1.0.1",
"eslint-plugin-unicorn": "^9.1.0",
"eslint-plugin-wix-editor": "^2.0.0",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"semantic-release": "^16.0.0-beta.19",
"simplytyped": "^3.2.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-clean-code": "^0.2.9",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-sonarts": "^1.9.0",
"ttypescript": "^1.5.7",
"type-coverage": "^2.0.2",
"typescript": "~3.5.2",
"watchexec-bin": "^1.0.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}