-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "tchart",
"version": "1.0.0",
"description": "Telegram contest charts",
"main": "tchart.js",
"scripts": {
"dev": "webpack --mode development --watch",
"prod": "webpack --mode production --progress --hide-modules",
"start": "webpack-dev-server --mode development --content-base dist/ --open",
"test": "mocha --require @babel/register --recursive test",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zetraison/tchart.git"
},
"keywords": [
"charts"
],
"author": "zetraison",
"license": "ISC",
"bugs": {
"url": "https://github.com/zetraison/tchart/issues"
},
"homepage": "https://github.com/zetraison/tchart#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"copy-webpack-plugin": "^6.0.1",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"terser-webpack-plugin": "^3.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}