-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "workflow-charts",
"sideEffects": false,
"version": "1.0.0",
"description": "Great, actionable, visual metrics for lean workflows.",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"private": true,
"jest": {
"automock": false,
"setupFiles": ["../setupJest.js"],
"rootDir": "src",
"collectCoverage": true,
"coverageReporters": ["json", "lcov", "text", "text-summary"],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": ["plugin:prettier/recommended"]
},
"babel": {
"presets": ["es2015"],
"sourceMaps": true,
"retainLines": true,
"env": {
"test": {
"plugins": ["transform-es2015-modules-commonjs"]
}
}
},
"author": "João Miranda",
"license": "MIT",
"devDependencies": {
"awesome-typescript-loader": "^3.4.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.4.0",
"expect": "latest",
"html-webpack-plugin": "^3.1.0",
"jest": "^21.2.1",
"jest-fetch-mock": "^1.3.3",
"prettier": "^1.9.2",
"source-map-loader": "^0.2.3",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"immutable": "^3.8.2",
"lodash": "^4.17.4",
"moment": "^2.19.3",
"papaparse": "^4.3.6"
}
}