-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.8 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-service",
"version": "2.0.3",
"license": "MIT",
"description": "",
"main": "dist/index.js",
"typings": "src/index.ts",
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:r",
"test:r": "npm run mocha -- src/*.spec.ts",
"mocha": "node -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --timeout 5000",
"test:w": "npm run mocha -- --watch-extensions ts --watch src/**/*.spec.ts",
"test:d": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-extensions ts --watch src/**/*.spec.ts",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --pretty --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"tsclint:w": "npm run tsclint -- --watch",
"eslint": "eslint src --ext ts",
"eslint:fix": "eslint src --ext \"ts\" --fix",
"eslint:w": "chokidar \"src/**/*.ts\" --initial -c \"npm run eslint\"",
"lint:w": "run-p tsclint:w eslint:w",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build && sed -i -e 's/devDependencies/_devDependencies/g' package.json",
"build": "tsc",
"prebuild": "npm run clean",
"clean": "rimraf dist",
"commit": "git-cz"
},
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.3",
"@semantic-release/npm": "^5.0.4",
"@types/mocha": "^5.2.5",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.9.3",
"chokidar-cli": "^1.2.0",
"eslint": "^5.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-typescript": "^0.12.0",
"eslint-plugin-unicorn": "^6.0.0",
"mocha": "^5.2.0",
"mock-fs": "^4.6.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"semantic-release": "^15.9.12",
"ts-node": "^7.0.1",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^16.0.1"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"repository": {
"type": "git",
"url": "https://github.com/unlight/typescript-service.git"
},
"keywords": [],
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}