forked from doxout/promise-observer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
45
46
47
48
49
50
51
52
53
54
{
"name": "promisemitter",
"version": "1.0.0",
"description": "An observer / event emitter implementation with promise support",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*",
"src/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublish": "yarn build && yarn test",
"build": "tsc",
"build-js": "tsc",
"test": "jest"
},
"keywords": [
"promise",
"observer",
"observable",
"event",
"events"
],
"author": "spion",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^11.10.5",
"jest": "^24.1.0",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/hfour/promise-observer.git"
},
"bugs": {
"url": "https://github.com/hfour/promise-observer/issues"
},
"homepage": "https://github.com/hfour/promise-observer",
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"node_modules",
"build"
]
}
}