forked from facebookarchive/emitter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.19 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
55
56
{
"name": "fbemitter",
"version": "2.0.1",
"keywords": [
"clientside"
],
"bugs": "https://github.com/facebook/emitter/issues",
"license": "BSD-3-Clause",
"files": [
"LICENSE",
"PATENTS",
"README.md",
"index.js",
"lib/"
],
"main": "index.js",
"repository": "facebook/emitter",
"scripts": {
"build": "gulp build",
"prepublish": "npm run build",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"fbjs": "^0.6.0"
},
"devDependencies": {
"babel-core": "^5.8.34",
"del": "^2.2.0",
"fbjs-scripts": "^0.5.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.3.0",
"gulp-flatten": "^0.2.0",
"jest-cli": "^0.8.2",
"object-assign": "^4.0.1",
"run-sequence": "^1.1.5"
},
"jest": {
"modulePathIgnorePatterns": [
"/lib/",
"/node_modules/"
],
"persistModuleRegistryBetweenSpecs": true,
"preprocessorIgnorePatterns": [
"/node_modules/"
],
"rootDir": "",
"scriptPreprocessor": "scripts/jest/preprocessor.js",
"testPathDirs": [
"<rootDir>/src"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/(?!(__forks__/fetch.js$|fetch/))"
]
}
}