-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.1 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@c-hive/team-contribution-calendar",
"version": "0.3.2",
"description": "GitHub-like contribution calendar for the whole team. Supports GitHub and GitLab.",
"main": "./lib/index.js",
"files": [
"/lib/**/*.js",
"!/lib/**/*.test.js",
"/lib/**/*.json",
"/lib/**/*.svg"
],
"scripts": {
"dev": "cross-env BROWSERSLIST_ENV=development parcel ./dev/index.html --global TeamContributionCalendar -d ./dev/parcel",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib --copy-files",
"clean:lib": "rimraf lib",
"lint": "eslint src",
"test": "nyc --reporter=html --reporter=text mocha src/ --require ignore-styles --require @babel/register --recursive",
"test:only": "mocha src/ --require ignore-styles --require @babel/register --recursive",
"test:watch": "mocha src/ --require ignore-styles --require @babel/register --recursive --watch",
"prepublishOnly": "npm run clean:lib && npm run lint && npm run test && npm run build",
"test:coverage": "nyc report --reporter=text-lcov",
"browserify": "browserify lib/index.js --standalone TeamContributionCalendar -o dist/team-contribution-calendar.min.js",
"uglify": "uglifyjs dist/team-contribution-calendar.min.js -o dist/team-contribution-calendar.min.js",
"distify": "yarn run build && yarn run browserify && yarn run uglify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c-hive/team-contribution-calendar.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/c-hive/team-contribution-calendar/issues"
},
"engines": {
"node": ">=12.4.0"
},
"homepage": "https://github.com/c-hive/team-contribution-calendar#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"@babel/runtime": "^7.4.3",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-inline-svg": "^1.0.0",
"babel-preset-minify": "^0.5.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"core-js": "^3.6.5",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"ignore-styles": "^5.0.1",
"mocha": "^6.1.2",
"mocha-jsdom": "^2.0.0",
"npm": "^6.9.0",
"nyc": "^13.3.0",
"parcel-bundler": "^1.12.3",
"parcel-plugin-inlinesvg": "^0.1.1",
"pre-commit": "^1.2.2",
"prettier": "^1.17.0",
"proxyquire": "^2.1.0",
"rimraf": "^2.6.3",
"sinon": "^7.3.1",
"uglify-js": "^3.5.4"
},
"//resolutions": {
"svgo": "https://github.com/c-hive/team-contribution-calendar/issues/55"
},
"resolutions": {
"svgo": "^1.3.2"
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"elly": "^1.1.10",
"immer": "^6.0.3",
"svgson": "^3.1.0"
},
"browserslist": [
"last 2 versions and not dead and > 0.2%"
]
}