-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.13 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
{
"name": "berles-boolean-skill-map",
"version": "0.2.2",
"description": "D3 skills maps that represent a custom developer roadmap version of https://roadmap.sh",
"main": "src/index.js",
"scripts": {
"test": "jest --coverage --watch",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --coverage",
"build": "webpack --mode production",
"update-contributors": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/booleanchile/berles-boolean-skill-map.git"
},
"keywords": [
"skillmap",
"d3",
"javascript",
"developer",
"roadmap"
],
"contributors": [
"Gonzalo Pincheira <[email protected]> (https://boolean.cl)",
"Rodrigo Martinez <[email protected]> (https://berles.co)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/booleanchile/berles-boolean-skill-map/issues"
},
"homepage": "https://github.com/booleanchile/berles-boolean-skill-map#readme",
"dependencies": {
"d3": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.11.0",
"@testing-library/dom": "^7.23.0",
"all-contributors-cli": "^6.17.2",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.3.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"jest-junit": "^10.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"node-watch": "^0.6.3",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.1.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"jest-junit": {
"outputDirectory": "./test-results/junit",
"outputName": "results.xml"
}
}