-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.22 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
{
"name": "ku4es-ui-testing",
"version": "3.0.14",
"description": "kodmunki Utilities for ECMAScript UI Testing",
"repository": {
"type": "git",
"url": "git+https://github.com/kodmunki/ku4es-ui-testing.git"
},
"engines": {
"node": ">10",
"npm": ">5"
},
"scripts": {
"reload": "rm -rf ./node_modules && rm -f ./package-lock.json && npm i",
"test": "mocha --timeout 10000 -R spec --require @babel/register --require regenerator-runtime --recursive ./test",
"test:file": "mocha -R spec --require @babel/register",
"test:cov": "NODE_ENV=test nyc npm test",
"test:covd": "open -a 'Google Chrome' ./coverage/lcov-report/index.html",
"lint": "eslint './src/**/*.js' './test/**/*.js'",
"lint:fix": "eslint --fix './src/**/*.js' './test/**/*.js'",
"check": "npm run lint && npm run test:cov",
"checkd": "npm run test:covd",
"docs": "npm run jsdocs && npm run mddocs",
"docs:read": "open -a 'Google Chrome' ./jsdoc/index.html",
"jsdocs": "rm -rf jsdoc ; jsdoc -c ./jsdoc.json",
"mddocs": "rm README.API.md ; jsdoc2md --files 'src/**/*.js' > README.API.md",
"build": "rm -rf dist && rollup -c",
"version:alpha": "npm version prerelease --preid=alpha --no-git-tag-version && git commit -am'alpha' && git push",
"version:beta": "npm version prerelease --preid=beta --no-git-tag-version && git commit -am'beta' && git push",
"version:rc": "npm version prerelease --preid=rc --no-git-tag-version && git commit -am'rc' && git push",
"release": "npm run build && npm publish && npm run release:browser",
"release:alpha": "npm run build && npm run version:alpha && npm publish --tag next",
"release:beta": "npm run build && npm run version:beta && npm publish --tag next",
"release:rc": "npm run build && npm run version:rc && npm publish --tag next",
"release:browser": "sh scripts/release-browser.sh",
"remove:next": "npm dist-tags rm ku4es-ui-kernel next",
"prepare": "npm run build",
"update:latest": "sh ./scripts/update.sh"
},
"pre-commit": [
"lint:fix",
"test:cov"
],
"dependencies": {
"ku4es-kernel": "^9.0.7"
},
"devDependencies": {
"@babel/cli": "^7.22.6",
"@babel/core": "^7.22.8",
"@babel/eslint-parser": "^7.22.7",
"@babel/preset-env": "^7.22.7",
"@babel/register": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"babel-plugin-istanbul": "^6.1.1",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"jsdoc-to-markdown": "^8.0.0",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.13.11",
"rollup": "^3.26.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2"
},
"files": [
"dist"
],
"main": "dist",
"bugs": {
"url": "https://github.com/kodmunki/ku4es-ui-testing/issues"
},
"homepage": "https://github.com/kodmunki/ku4es-ui-testing#readme",
"author": "kodmunki",
"license": "kodmunki"
}