-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "mobx-event-bus",
"version": "0.1.1",
"description": "Tiny library make Mobx action response events.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/7upcat/mobx-event-bus.git"
},
"keywords": [
"mobx",
"eventBus"
],
"author": "7upcat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/7upcat/mobx-event-bus/issues"
},
"homepage": "https://github.com/7upcat/mobx-event-bus#readme",
"dependencies": {
"mobx": "^3.3.1"
},
"devDependencies": {
"babel-core": "7.0.0-beta.3",
"babel-jest": "^22.0.4",
"babel-plugin-transform-regenerator": "6.26.0",
"babel-preset-es2015": "7.0.0-beta.3",
"babel-preset-stage-1": "7.0.0-beta.3",
"jest": "^22.0.4"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"testRegex": "test/.*.test.js$",
"testPathIgnorePatterns": [
"/node_modules/",
"/\\./"
]
},
"scripts": {
"test": "jest"
}
}