-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "@bnjmnrsh/toast",
"version": "0.1.0",
"description": "A small helper for managing toast like messages. ",
"main": "dist/Toast.min.js",
"type": "module",
"scripts": {
"build": "rollup --config",
"watch": "rollup --config --watch",
"test-ci": "node --experimental-vm-modules ./node_modules/.bin/jest --coverage --ci",
"testing": "node --experimental-vm-modules ./node_modules/.bin/jest --coverage --watch --verbose false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bnjmnrsh/Toast.git"
},
"keywords": [
"toast",
"popup",
"javascript"
],
"author": "bnjmnrsh",
"license": "ISC",
"bugs": {
"url": "https://github.com/bnjmnrsh/Toast/issues"
},
"homepage": "https://github.com/bnjmnrsh/Toast#readme",
"jest": {
"verbose": true,
"transform": {},
"resetMocks": false,
"setupFiles": [
"jest-localstorage-mock"
],
"testEnvironment": "jsdom",
"coverageReporters": [
"json-summary",
"text-summary",
"html"
],
"collectCoverageFrom": [
"./src/*.{js,jsx,ts}",
"!**/node_modules/**"
]
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@rollup/plugin-babel": "^6.0.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"jest-localstorage-mock": "^2.4.22",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-config-standard": "^5.0.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2"
}
}