-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "ui-elements",
"version": "8.11.0",
"description": "A repo of ui elements",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/localnerve/ui-elements.git"
},
"scripts": {
"build": "rimraf dist && npm run installs && gulp webpack && gulp copy",
"build:dev": "rimraf dist && gulp webpack-dev && gulp copy",
"lint": "eslint .",
"installs": "gulp installs",
"copy": "gulp copy",
"dev": "npm run build:dev && node index.js",
"pretest": "node ./test/helpers/download-test-browsers.js",
"test": "npm run build && npm run lint && mocha",
"start": "npm run build && node index.js"
},
"keywords": [
"localnerve",
"ui",
"elements"
],
"author": "Alex Grant <[email protected]> (https://www.localnerve.com)",
"license": "BSD-3-Clause",
"dependencies": {
"chromedriver": "^132.0.0",
"express": "^4.21.2",
"geckodriver": "^5.0.0",
"selenium-assistant": "^6.1.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.18.0",
"babel-loader": "^9.2.1",
"chai": "^5.1.2",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"gulp": "^5.0.0",
"mocha": "^11.0.1",
"picklr": "latest",
"rimraf": "^6.0.1",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"overrides": {
"request": "npm:@cypress/[email protected]"
},
"engines": {
"node": ">=20"
}
}