forked from seerline/clchart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.46 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
{
"name": "clchart",
"version": "0.0.7",
"description": "A fast, simple, cross-platform, and configurable stock chart library created using canvas.",
"main": "dist/clchart.js",
"repository": {
"type": "git",
"url": "https://github.com/seerline/clchart.git"
},
"scripts": {
"dev": "webpack-dev-server --progress --open --config webpack.dev.js",
"lint": "eslint ./",
"clean": "rm -rf node_modules && npm i",
"build": "webpack --config webpack.prod.js",
"ghpages": "sh ./scripts/deploy.sh",
"release": "npm run build && ./node_modules/.bin/gh-release -a ./dist/clchart.js",
"docs": "gulp doc && gulp watch",
"prepublishOnly": "npm run clean && npm run lint && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^8.2.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"docdash": "^0.4.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"gh-pages": "^1.1.0",
"gh-release": "^3.2.0",
"gulp": "^4.0.0",
"gulp-jsdoc3": "^2.0.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2"
}
}