-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "angular-incremental-tests",
"version": "0.0.0-development",
"description": "Angular incremental unit tests based on git changes",
"main": "dist/src/index.js",
"scripts": {
"build": "rimraf dist/src && tsc --project tsconfig.json",
"test": "npm run compile && node src/index",
"prerelease": "cp package.json dist/src",
"release": "npm run prerelease && semantic-release"
},
"dependencies": {
"glob": "7.1.7",
"simple-git": "2.38.1"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/github": "7.2.3",
"@semantic-release/gitlab": "6.0.9",
"@types/node": "8.10.66",
"rimraf": "3.0.2",
"semantic-release": "17.4.3",
"typescript": "4.1.5"
},
"incrementalTests": {
"ignoredFilesPatterns": [
".md",
".eslint*",
"*.json",
"!package.json",
"!package-lock.json",
".mustache",
"*.js"
],
"rootDir": "src/app",
"testCommand": "npm run test"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/RedFroggy/incremental-unit-tests/issues"
},
"keywords": [
"angular",
"incremental",
"unit tests",
"red froggy"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RedFroggy/incremental-unit-tests.git"
}
}