-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "ts-observable",
"version": "1.0.1",
"description": "Basic Typescript observable objects via decorators",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": true,
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"test": "jest --config jestconfig.json --verbose false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aleksey-shmatov/ts-observable.git"
},
"keywords": [
"typescript",
"observable"
],
"author": "Aleksey Shmatov",
"license": "ISC",
"bugs": {
"url": "https://github.com/aleksey-shmatov/ts-observable/issues"
},
"homepage": "https://github.com/aleksey-shmatov/ts-observable#readme",
"devDependencies": {
"@types/eventemitter3": "^2.0.2",
"@types/jest": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"dependencies": {
"eventemitter3": "^3.1.2"
}
}