-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.63 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
61
62
63
64
65
66
67
68
69
70
{
"name": "visualflow",
"version": "0.0.7",
"description": "visualflow is Visual Flow Creator",
"author": {
"name": "Nguyen Van Hau",
"email": "nguyenvanhaudev@gmail.com"
},
"homepage": "https://visualflow.cc",
"bugs": {
"url": "https://github.com/devhau/visualflow/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devhau/visualflow.git"
},
"keywords": [
"visualflow",
"flow",
"draw flow",
"Visual Flow Creator"
],
"main": "dist/visualflow.cjs.js",
"module": "dist/visualflow.es.js",
"browser": "dist/visualflow.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"rollup": "^2.70.1",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.11",
"ts-jest": "^27.1.4",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint --fix 'src/**/*.ts'",
"test": "jest",
"publish": "npm publish"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.test.ts"
]
}
}