-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "onboardingvisualization",
"version": "1.0.0",
"description": "Tool to visualize stats of open-source repositories",
"main": "index.js",
"scripts": {
"start": "parcel index.html visualizations.html",
"lint": "eslint ./src --fix",
"build": "parcel build index.html visualizations.html --public-url /OnboardingVisualization/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpbl/OnboardingVisualization.git"
},
"keywords": [
"open-source",
"onboarding",
"visualization"
],
"author": "Porteiros",
"license": "MIT",
"bugs": {
"url": "https://github.com/hpbl/OnboardingVisualization/issues"
},
"homepage": "https://hpbl.github.io/OnboardingVisualization/",
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"d3": "^5.7.0",
"parcel-bundler": "^1.12.4",
"test": "^0.6.0",
"transform-runtime": "0.0.0"
}
}