-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "spectron-tested-app",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "jest"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"jest": {
"transform": {"^.+\\.js$": "<rootDir>/node_modules/babel-jest"},
"testPathIgnorePatterns": [],
"testMatch": ["**/spectron-test/?(*.)(spec|test).js?(x)"],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-tools",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/enzyme",
"<rootDir>/node_modules/sinon",
"<rootDir>/node_modules/radium",
"<rootDir>/src/components",
"<rootDir>/node_modules/s2s-base-class"
]
},
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "~1.6.2",
"jest": "^20.0.1"
}
}