-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.63 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
{
"name": "rx-dects",
"version": "0.1.3",
"description": "rxjs typescript decorators",
"main": "dist/public-api.js",
"scripts": {
"test": "npm run lint && jest --coverage --colors",
"rimraf": "rimraf",
"size": "size-limit",
"lint": "tslint -c tslint.json 'src/**/*.ts' --force",
"clean:dist": "npm run rimraf -- dist",
"build": "npm run clean:dist && tsc -p tsconfig.json",
"prepublish": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grachpower/rx-dects.git"
},
"author": "Artem Andreev",
"email": "amiscary@gmail.com",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"typescript",
"ts",
"js",
"javascript",
"decorators",
"decorator",
"rxjs",
"rx",
"rx-js",
"reactive-x",
"reactive",
"declarative",
"cache",
"share"
],
"bugs": {
"url": "https://github.com/grachpower/rx-dects/issues"
},
"homepage": "https://github.com/grachpower/rx-dects#readme",
"dependencies": {
"rxjs": "^6.3.3"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"jest": "^23.6.0",
"rimraf": "^2.6.3",
"size-limit": "^0.21.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"size-limit": [
{
"path": "dist/*.js",
"limit": "9 KB"
}
]
}