This repository was archived by the owner on Nov 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"name": "@medjaibot/framework",
"version": "1.1.1",
"repository": "git@github.com:MedjaiBot/Framework.git",
"author": "Yannick Fricke <yannickfricke@googlemail.com>",
"private": false,
"license": "MIT",
"scripts": {
"commit": "git-cz",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:watch": "chokidar './src/**/*.ts' -c 'node -e \"console.clear()\" && yarn lint' --initial",
"lint:fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"lint:fix:watch": "chokidar './src/**/*.ts' -c 'node -e \"console.clear()\" && yarn lint:fix' --initial",
"prerelease": "tsc",
"release": "semantic-release --ci=false --debug --access public"
},
"dependencies": {
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/jest": "^24.0.12",
"@types/node": "10",
"commitizen": "^4.0.1",
"cz-conventional-changelog": "^3.0.2",
"jest": "^24.8.0",
"semantic-release": "^15.13.12",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"browser": {
"fs": false
}
}