forked from Silind-Software/direflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.86 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@fourth/direflow-cli",
"version": "3.5.5",
"description": "Official CLI for Direflow",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest --env=jest-environment-jsdom-fourteen",
"update-version": "node scripts/node/updateVersion.js",
"setup-local": "./scripts/bash/setupLocal.sh",
"clean:all": "node ./scripts/node/cleanupAll.js",
"install:all": "node ./scripts/node/installAll.js",
"build:all": "node ./scripts/node/buildAll.js && npm run install:all -- --no-deps",
"build:full": "npm run clean:all && npm run install:all && npm run build:all && npm run clean:all -- --modules",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:test": "./scripts/bash/startIntegrationTest.sh"
},
"bin": {
"direflow": "bin/direflow"
},
"files": [
"bin/*",
"dist/*",
"templates/*"
],
"repository": {
"type": "git",
"url": "[email protected]:Silind-Software/direflow.git"
},
"keywords": [
"cli",
"widget",
"web component",
"react",
"typescript"
],
"author": "Silind Software",
"license": "MIT",
"homepage": "https://direflow.io",
"dependencies": {
"boxen": "^4.1.0",
"chalk": "2.4.2",
"commander": "3.0.1",
"deepmerge": "4.0.0",
"esm": "3.2.25",
"handlebars": "^4.7.2",
"inquirer": "7.0.0",
"mkdirp": "0.5.1",
"ncp": "2.0.0",
"rimraf": "3.0.0",
"to-case": "^2.0.0"
},
"devDependencies": {
"@types/inquirer": "6.5.0",
"@types/jest": "24.0.15",
"@types/jsdom": "^12.2.4",
"@types/mkdirp": "0.5.2",
"@types/mock-fs": "^4.10.0",
"@types/ncp": "2.0.1",
"@types/node": "^12.7.4",
"@types/rimraf": "2.0.2",
"@types/webpack": "^4.41.21",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"cypress": "^4.0.2",
"cypress-shadow-dom": "^1.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "24.8.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jsdom": "^16.1.0",
"mock-fs": "^4.10.4",
"prettier": "^1.19.1",
"start-server-and-test": "^1.10.8",
"ts-jest": "24.0.2",
"typescript": "3.9.3"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"roots": [
"<rootDir>/"
],
"moduleFileExtensions": [
"ts",
"js",
"tsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/**/*.test.(ts|tsx)"
],
"testPathIgnorePatterns": [
"<rootDir>/templates",
"<rootDir>/packages",
"<rootDir>/cypress"
],
"collectCoverage": true
}
}