forked from hirokidaichi/uiflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 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
{
"name": "@kexi/uiflow",
"version": "2.1.1",
"description": "uiflow - the simplest way to write down your ui-flow diagram like markdown",
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/src/app/index.js",
"module": "./dist/esm/src/app/index.js",
"types": "./dist/esm/src/app/index.d.ts",
"scripts": {
"test": "jest",
"test-ci": "jest --ci --coverage",
"lint": "npx eslint",
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf ./dist ./coverage"
},
"bin": {
"uiflow": "./dist/cjs/src/bin/uiflow.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kexi/uiflow.git"
},
"author": "hirokidaichi",
"license": "MIT",
"dependencies": {
"marron-glace": "^0.0.3",
"spawn-stream": "^1.0.2",
"stream-from-promise": "^1.0.0",
"string-to-stream": "^3.0.1",
"through2": "^4.0.2"
},
"bugs": {
"url": "https://github.com/kexi/uiflow/issues"
},
"homepage": "https://github.com/kexi/uiflow#README.md",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/minimist": "^1.2.2",
"@types/through2": "^2.0.38",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}