-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "ec-wordcloud",
"version": "0.0.3",
"description": "echarts-like wordcloud component",
"main": "index.js",
"repository": "https://github.com/yokiyokiyoki/ec-wordcloud.git",
"author": "youjie",
"license": "MIT",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"commitizen": "^3.0.5",
"cz-customizable": "^5.3.0",
"http-server": "^0.11.1",
"rollup": "^1.21.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.18.1",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.2",
"vuepress": "^1.1.0"
},
"scripts": {
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"lint:fix": "tslint --fix -c tslint.json \"src/**/*.ts\"",
"clean": "rm -rf ./dist && mkdir dist",
"build": "yarn lint:fix && yarn clean && rollup --config",
"dev": "http-server -p 9001 -o",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"deploy": "bash deploy.bash"
}
}