-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.55 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.55 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
{
"name": "@vlr/de-redux",
"version": "2.0.0",
"description": "update this",
"files": [
"src",
"build/src",
"index.js",
"index.js.map",
"index.d.ts"
],
"main": "index.js",
"typings": "index",
"scripts": {},
"keywords": [],
"author": "Vladimir Repin",
"license": "MIT",
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"build/src/**/*.js"
],
"exclude": [
"build/src/**/*.type.js",
"build/src/**/index.js",
"build/testSrc/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": true,
"all": true
},
"repository": {
"type": "git",
"url": "git@github.com:repinvv/de-redux2.git"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/mocha": "^2.2.44",
"@types/node": "^8.5.1",
"@types/uuid": "^3.4.4",
"@vlr/ts-reexports": "^2.1.1",
"chai": "^4.1.2",
"cross-spawn": "^5.1.0",
"fs-extra": "^5.0.0",
"gulp": "^3.9.1",
"gulp-mocha": "3.0.1",
"gulp-rename": "^1.4.0",
"gulp-transform": "^3.0.5",
"gulp-tslint": "^8.1.2",
"gulp-watch": "^4.3.11",
"run-sequence": "^2.2.0",
"tslint": "^5.8.0",
"typescript": "^3.0.1"
},
"dependencies": {
"@types/change-case": "^2.3.1",
"@vlr/array-tools": "^1.0.14",
"@vlr/map-tools": "^1.2.3",
"@vlr/object-tools": "^1.0.5",
"@vlr/razor": "^1.99.991",
"change-case": "^3.0.2",
"globby": "^8.0.1",
"uuid": "^3.3.2"
}
}