-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "@wsfe/flowchart",
"version": "0.2.2",
"main": "./dist/flowchart.umd.min.js",
"types": "./types",
"scripts": {
"serve": "vue-cli-service serve --open",
"bundle": "vue-cli-service build --target lib --name flowchart ./src/index.ts --report",
"bundle:docs": "vue-cli-service build --mode docs --dest docs",
"lint": "vue-cli-service lint",
"test": "vue-cli-service test:unit",
"prepublishOnly": "yarn bundle"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist",
"src",
"types"
],
"keywords": [
"wsfe",
"flowchart",
"vue flowchart component"
],
"author": {
"name": "ChuChencheng",
"url": "https://github.com/ChuChencheng"
},
"homepage": "https://github.com/wsfe/flowchart",
"license": "MIT",
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^23.1.4",
"@types/lodash.clonedeep": "^4.5.6",
"@types/uuid": "^3.4.5",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-typescript": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"core-js": "^2.6.5",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"ts-jest": "^23.0.0",
"typescript": "^3.4.3",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
}
}