-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.92 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.92 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
72
73
74
75
76
77
78
79
{
"name": "@ngxp/log",
"version": "0.5.1",
"description": "",
"main": "./dist/index",
"typings": "./dist/index",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --project .",
"compile": "tsc --project .",
"build": "run-s clean lint test compile",
"watch": "run-s clean dev",
"dev": "run-p \"compile -- --watch\" \"test -- --notify --watch\"",
"test": "jest --verbose --run-in-band",
"git-push": "git push --follow-tags origin master",
"new-version": "standard-version --commit-all",
"release": "run-s build new-version git-push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngxp/log.git"
},
"publishConfig": {
"access": "public"
},
"author": "Marvin Luchs <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ngxp/log/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/ngxp/log#readme",
"devDependencies": {
"@types/jest": "24.0.22",
"@types/lodash-es": "4.17.3",
"babel-jest": "24.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"jest": "24.9.0",
"jest-localstorage-mock": "2.4.0",
"lodash-es": "4.17.15",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"rxjs": "6.5.3",
"rxjs-marbles": "5.0.3",
"standard-version": "7.0.0",
"ts-jest": "24.1.0",
"tslint": "5.20.1",
"tslint-config-luchsamapparat": "1.6.0",
"typescript": "3.7.2",
"whatwg-fetch": "3.0.0"
},
"peerDependencies": {
"lodash-es": "4.x",
"rxjs": "6.x"
},
"jest": {
"setupFiles": [
"./setupJest.js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.js$": "babel-jest"
},
"moduleNameMapper": {
"lodash-es": "lodash"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}