-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.76 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
{
"name": "brandojs",
"version": "1.1.6",
"description": "Automatically change CSS backgrounds on any DOM element in a random or sequential order.",
"main": "dist/bRando.js",
"details": {
"stylizedName": "bRando",
"subtitle": "Website background randomizer",
"nickName": "yak"
},
"scripts": {
"watch-demo": "webpack-dev-server --mode=development",
"watch-test": "npm run test -- --watchAll",
"watch-docs": "conc --restart-after 10000 --restart-tries 3 -c \"auto\" -p \"[{name}]\" -n \"TYPEDOC,LIVE\" \"typedoc --watch\" \"live-server --open=/public/docs\" \"npm i -g live-server@latest\"",
"test": "jest --verbose --coverage",
"build": "npm run test && npm run build-coverage-badge && npm run build-readme && webpack --mode=production && typedoc",
"prebuild": "npx update-browserslist-db@latest",
"build-public": "webpack --mode=production && npm run test && typedoc",
"build-readme": "npx @appnest/readme generate --config ./src/readme/blueprint.json && jest --coverage=false ./src/readme/readme.md.test.ts && echo README is GOOD to go || echo ERRORS FOUND IN README",
"build-coverage-badge": "coverage-badger -r ./public/coverage/clover.xml -d ./src/readme/",
"preversion": "git checkout master && git pull && npm ci",
"version": "npm run build && git add *",
"postpublish": "git push && git push --tags"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/isaacyakl/brandojs.git"
},
"keywords": [
"CSS",
"background randomizer",
"background changer",
"background property",
"background-image",
"background-color",
"background rotator",
"color changer",
"randomizer",
"random",
"sequential",
"javascript",
"typescript"
],
"author": "Isaac 'yak' L. <i@isaacyakl.com> (https://www.isaacyakl.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/isaacyakl/brandojs/issues"
},
"homepage": "https://brandojs.isaacyakl.com",
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@types/jest": "^29.5.2",
"@types/marked": "^5.0.0",
"@types/node": "^20.2.5",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"concurrently": "^8.1.0",
"copy-webpack-plugin": "^11.0.0",
"coverage-badger": "^1.0.1",
"handlebars": "^4.7.7",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"marked": "^5.0.4",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-plugin-extras": "^2.3.3",
"typescript": "^5.1.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.3",
"webpack-dev-server": "^4.15.0"
}
}