-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 998 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 998 Bytes
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
{
"name": "randomify",
"version": "1.0.1",
"description": "Randomify: zero-setup random Spotify Web Player playback (DOM automation)",
"type": "module",
"scripts": {
"build": "node scripts/build.mjs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:randomness": "node scripts/test-randomness-real.js",
"lint": "eslint extension/src-src lib scripts tests --ext .js,.mjs"
},
"keywords": [
"randomify",
"spotify",
"extension",
"shuffle",
"random"
],
"author": "",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@jest/globals": "^29.7.0",
"archiver": "^7.0.1",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.0.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
]
}
}