forked from zenmoney/ZenPlugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.01 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "zenplugins",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.1",
"babel-preset-react-app": "3.0.2",
"babel-runtime": "6.23.0",
"body-parser": "1.18.0",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"chalk": "1.1.3",
"cheerio": "1.0.0-rc.2",
"eslint": "4.4.1",
"eslint-config-react-app": "^2.0.0",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"exports-loader": "0.6.4",
"extract-text-webpack-plugin": "3.0.0",
"fetch-mock": "5.12.2",
"fs-extra": "3.0.1",
"html-webpack-exclude-assets-plugin": "0.0.5",
"html-webpack-plugin": "2.29.0",
"http-proxy": "1.16.2",
"imports-loader": "0.7.1",
"jest": "20.0.4",
"jshashes": "1.0.7",
"lodash": "4.17.4",
"object-assign": "4.1.1",
"pad-left": "2.1.0",
"promise": "8.0.1",
"react-dev-utils": "^3.1.0",
"script-loader": "0.7.0",
"strip-bom": "3.0.0",
"util": "0.10.3",
"webpack": "3.5.1",
"webpack-dev-server": "2.7.1",
"whatwg-fetch": "git+https://github.com/skvav/fetch.git#a646b2f837308b483af07012c80e8fd8bb5984f6"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"test": "node scripts/test.js"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"setupFiles": [],
"setupTestFrameworkScriptFile": "<rootDir>/scripts/setupJestTestFramework.js",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js?(x)",
"<rootDir>/src/**/?(*.)(spec|test).js?(x)"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.js$"
],
"moduleFileExtensions": [
"js"
]
}
}