-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"name": "vue-dag",
"version": "0.1.8",
"description": "Directed acyclic graph (DAG) builder for Vue.js",
"main": "dist/vue-dag.umd.js",
"module": "dist/vue-dag.esm.js",
"unpkg": "dist/vue-dag.min.js",
"typings": "types/index.d.ts",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --dest demo",
"build:library": "vue-cli-service build --target lib --name vue-dag ./src/index.ts",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexImb/vue-dag.git"
},
"keywords": [
"vue",
"dag",
"builder"
],
"author": "Alex Imbrea <[email protected]>",
"bugs": {
"url": "https://github.com/AlexImb/vue-dag/issues"
},
"homepage": "https://github.com/AlexImb/vue-dag",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.10",
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-typescript": "^4.4.1",
"@vue/cli-plugin-unit-jest": "^4.5.4",
"@vue/cli-service": "^4.5.6",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"core-js": "^3.8.3",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^7.8.0",
"node-sass": "^6.0.0",
"prettier": "^2.1.1",
"sass-loader": "^10.1.1",
"ts-jest": "^26.3.0",
"typescript": "3.9.7",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^9.0.0",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.1.0"
}
}