-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
113 lines (113 loc) · 3.12 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
111
112
113
{
"author": "Michiel van der Geest <m.van.der.geest@metrological.com>",
"license": "Apache-2",
"name": "@lightningjs/cli",
"version": "2.14.2",
"description": "Lightning-CLI: Command Line Interface tool for a seamless Lightning App Development flow",
"bin": {
"lightning": "./bin/index.js",
"lng": "./bin/index.js"
},
"scripts": {
"test": "jest --runInBand --detectOpenHandles",
"release": "npm publish --access public"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-parameters": "^7.10.5",
"@babel/plugin-transform-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-virtual": "^2.0.3",
"@rollup/plugin-typescript": "^11.1.1",
"babel-plugin-inline-json-import": "^0.3.2",
"chalk": "^4.1.0",
"commander": "^10.0.0 ",
"concat": "^1.0.3",
"core-js": "^3.6.5",
"deepmerge": "^4.3.1",
"didyoumean2": "^4.1.0",
"dotenv": "^16.0.3",
"esbuild": "^0.19.3",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"http-server": "^14.1.0",
"inquirer": "^7.3.3",
"is-online": "^8.4.0",
"latest-version": "^5.1.0",
"ora": "^5.1.0",
"replace-in-file": "^6.1.0",
"rollup": "^2.28.2",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.2",
"shelljs": "^0.8.4",
"socket.io": "^4.5.2",
"watch": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^29.5.0",
"jest-html-reporters": "^3.1.4",
"jest-image-snapshot": "^6.1.0",
"lint-staged": "^10.4.0",
"prettier": "^1.19.1",
"puppeteer": "^19.7.5"
},
"jest": {
"setupFiles": [
"./tests/global_configs/globalMocks.js"
],
"testSequencer": "./tests/global_configs/runSequence.js",
"globalSetup": "./tests/global_configs/globalSetup.js",
"globalTeardown": "./tests/global_configs/globalTeardown.js",
"collectCoverage": false,
"coverageDirectory": "./tests_coverage",
"coverageReporters": [
"html"
],
"collectCoverageFrom": [
"**/src/**",
"!**/fixtures/**"
],
"reporters": [
"default",
[
"jest-html-reporters",
{
"pageTitle": "Lightning-CLI Test Result",
"expand": true,
"hideIcon": true,
"publicPath": "./tests_report",
"filename": "report.html",
"inlineSource": true,
"openReport": false,
"includeConsoleLog": true
}
]
]
}
}